Upload 7 files
Browse filesModel fine tuned
- .gitattributes +1 -0
- assets/tokenizer/vocabulary.spm +3 -0
- config.json +25 -0
- metadata.json +6 -0
- model.weights.h5 +3 -0
- preprocessor.json +27 -0
- task.json +60 -0
- tokenizer.json +14 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
assets/tokenizer/vocabulary.spm filter=lfs diff=lfs merge=lfs -text
|
assets/tokenizer/vocabulary.spm
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:61a7b147390c64585d6c3543dd6fc636906c9af3865a5548f27f31aee1d4c8e2
|
| 3 |
+
size 4241003
|
config.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"module": "keras_nlp.src.models.gemma.gemma_backbone",
|
| 3 |
+
"class_name": "GemmaBackbone",
|
| 4 |
+
"config": {
|
| 5 |
+
"name": "gemma_backbone",
|
| 6 |
+
"trainable": true,
|
| 7 |
+
"vocabulary_size": 256000,
|
| 8 |
+
"num_layers": 18,
|
| 9 |
+
"num_query_heads": 8,
|
| 10 |
+
"num_key_value_heads": 1,
|
| 11 |
+
"hidden_dim": 2048,
|
| 12 |
+
"intermediate_dim": 32768,
|
| 13 |
+
"head_dim": 256,
|
| 14 |
+
"layer_norm_epsilon": 1e-06,
|
| 15 |
+
"dropout": 0,
|
| 16 |
+
"query_head_dim_normalize": true,
|
| 17 |
+
"use_post_ffw_norm": false,
|
| 18 |
+
"use_post_attention_norm": false,
|
| 19 |
+
"final_logit_soft_cap": null,
|
| 20 |
+
"attention_logit_soft_cap": null,
|
| 21 |
+
"sliding_window_size": 4096,
|
| 22 |
+
"use_sliding_window_attention": false
|
| 23 |
+
},
|
| 24 |
+
"registered_name": "keras_nlp>GemmaBackbone"
|
| 25 |
+
}
|
metadata.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"keras_version": "3.3.3",
|
| 3 |
+
"keras_nlp_version": "0.15.1",
|
| 4 |
+
"parameter_count": 2507536384,
|
| 5 |
+
"date_saved": "2024-11-25@13:18:03"
|
| 6 |
+
}
|
model.weights.h5
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f41765e2cc8777f68c3cf09987acdd2386c019aafe00ee4588fa107d0dba0a96
|
| 3 |
+
size 10025240416
|
preprocessor.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"module": "keras_nlp.src.models.gemma.gemma_causal_lm_preprocessor",
|
| 3 |
+
"class_name": "GemmaCausalLMPreprocessor",
|
| 4 |
+
"config": {
|
| 5 |
+
"name": "gemma_causal_lm_preprocessor",
|
| 6 |
+
"trainable": true,
|
| 7 |
+
"dtype": "float32",
|
| 8 |
+
"tokenizer": {
|
| 9 |
+
"module": "keras_nlp.src.models.gemma.gemma_tokenizer",
|
| 10 |
+
"class_name": "GemmaTokenizer",
|
| 11 |
+
"config": {
|
| 12 |
+
"name": "gemma_tokenizer",
|
| 13 |
+
"trainable": true,
|
| 14 |
+
"dtype": "int32",
|
| 15 |
+
"proto": null,
|
| 16 |
+
"sequence_length": null,
|
| 17 |
+
"add_bos": false,
|
| 18 |
+
"add_eos": false
|
| 19 |
+
},
|
| 20 |
+
"registered_name": "keras_nlp>GemmaTokenizer"
|
| 21 |
+
},
|
| 22 |
+
"sequence_length": 512,
|
| 23 |
+
"add_start_token": true,
|
| 24 |
+
"add_end_token": true
|
| 25 |
+
},
|
| 26 |
+
"registered_name": "keras_nlp>GemmaCausalLMPreprocessor"
|
| 27 |
+
}
|
task.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"module": "keras_nlp.src.models.gemma.gemma_causal_lm",
|
| 3 |
+
"class_name": "GemmaCausalLM",
|
| 4 |
+
"config": {
|
| 5 |
+
"backbone": {
|
| 6 |
+
"module": "keras_nlp.src.models.gemma.gemma_backbone",
|
| 7 |
+
"class_name": "GemmaBackbone",
|
| 8 |
+
"config": {
|
| 9 |
+
"name": "gemma_backbone",
|
| 10 |
+
"trainable": true,
|
| 11 |
+
"vocabulary_size": 256000,
|
| 12 |
+
"num_layers": 18,
|
| 13 |
+
"num_query_heads": 8,
|
| 14 |
+
"num_key_value_heads": 1,
|
| 15 |
+
"hidden_dim": 2048,
|
| 16 |
+
"intermediate_dim": 32768,
|
| 17 |
+
"head_dim": 256,
|
| 18 |
+
"layer_norm_epsilon": 1e-06,
|
| 19 |
+
"dropout": 0,
|
| 20 |
+
"query_head_dim_normalize": true,
|
| 21 |
+
"use_post_ffw_norm": false,
|
| 22 |
+
"use_post_attention_norm": false,
|
| 23 |
+
"final_logit_soft_cap": null,
|
| 24 |
+
"attention_logit_soft_cap": null,
|
| 25 |
+
"sliding_window_size": 4096,
|
| 26 |
+
"use_sliding_window_attention": false
|
| 27 |
+
},
|
| 28 |
+
"registered_name": "keras_nlp>GemmaBackbone"
|
| 29 |
+
},
|
| 30 |
+
"preprocessor": {
|
| 31 |
+
"module": "keras_nlp.src.models.gemma.gemma_causal_lm_preprocessor",
|
| 32 |
+
"class_name": "GemmaCausalLMPreprocessor",
|
| 33 |
+
"config": {
|
| 34 |
+
"name": "gemma_causal_lm_preprocessor",
|
| 35 |
+
"trainable": true,
|
| 36 |
+
"dtype": "float32",
|
| 37 |
+
"tokenizer": {
|
| 38 |
+
"module": "keras_nlp.src.models.gemma.gemma_tokenizer",
|
| 39 |
+
"class_name": "GemmaTokenizer",
|
| 40 |
+
"config": {
|
| 41 |
+
"name": "gemma_tokenizer",
|
| 42 |
+
"trainable": true,
|
| 43 |
+
"dtype": "int32",
|
| 44 |
+
"proto": null,
|
| 45 |
+
"sequence_length": null,
|
| 46 |
+
"add_bos": false,
|
| 47 |
+
"add_eos": false
|
| 48 |
+
},
|
| 49 |
+
"registered_name": "keras_nlp>GemmaTokenizer"
|
| 50 |
+
},
|
| 51 |
+
"sequence_length": 512,
|
| 52 |
+
"add_start_token": true,
|
| 53 |
+
"add_end_token": true
|
| 54 |
+
},
|
| 55 |
+
"registered_name": "keras_nlp>GemmaCausalLMPreprocessor"
|
| 56 |
+
},
|
| 57 |
+
"name": "gemma_causal_lm"
|
| 58 |
+
},
|
| 59 |
+
"registered_name": "keras_nlp>GemmaCausalLM"
|
| 60 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"module": "keras_nlp.src.models.gemma.gemma_tokenizer",
|
| 3 |
+
"class_name": "GemmaTokenizer",
|
| 4 |
+
"config": {
|
| 5 |
+
"name": "gemma_tokenizer",
|
| 6 |
+
"trainable": true,
|
| 7 |
+
"dtype": "int32",
|
| 8 |
+
"proto": null,
|
| 9 |
+
"sequence_length": null,
|
| 10 |
+
"add_bos": false,
|
| 11 |
+
"add_eos": false
|
| 12 |
+
},
|
| 13 |
+
"registered_name": "keras_nlp>GemmaTokenizer"
|
| 14 |
+
}
|