Upload folder using huggingface_hub
Browse files- config.json +10 -11
- metadata.json +2 -2
- model.weights.h5 +2 -2
- preprocessor.json +12 -16
- task.json +26 -34
- tokenizer.json +5 -10
config.json
CHANGED
|
@@ -1,17 +1,16 @@
|
|
| 1 |
{
|
| 2 |
-
"module": "keras_nlp.src.models.
|
| 3 |
-
"class_name": "
|
| 4 |
"config": {
|
| 5 |
-
"name": "
|
| 6 |
"trainable": true,
|
| 7 |
-
"vocabulary_size":
|
| 8 |
-
"num_layers":
|
| 9 |
-
"num_heads":
|
| 10 |
-
"hidden_dim":
|
| 11 |
-
"intermediate_dim":
|
| 12 |
"dropout": 0.1,
|
| 13 |
-
"max_sequence_length":
|
| 14 |
-
"num_segments": 2
|
| 15 |
},
|
| 16 |
-
"registered_name": "keras_nlp>
|
| 17 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"module": "keras_nlp.src.models.gpt2.gpt2_backbone",
|
| 3 |
+
"class_name": "GPT2Backbone",
|
| 4 |
"config": {
|
| 5 |
+
"name": "gpt2_backbone",
|
| 6 |
"trainable": true,
|
| 7 |
+
"vocabulary_size": 50257,
|
| 8 |
+
"num_layers": 12,
|
| 9 |
+
"num_heads": 12,
|
| 10 |
+
"hidden_dim": 768,
|
| 11 |
+
"intermediate_dim": 3072,
|
| 12 |
"dropout": 0.1,
|
| 13 |
+
"max_sequence_length": 1024
|
|
|
|
| 14 |
},
|
| 15 |
+
"registered_name": "keras_nlp>GPT2Backbone"
|
| 16 |
}
|
metadata.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
{
|
| 2 |
"keras_version": "3.3.3",
|
| 3 |
"keras_nlp_version": "0.10.0",
|
| 4 |
-
"parameter_count":
|
| 5 |
-
"date_saved": "2024-05-02@
|
| 6 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"keras_version": "3.3.3",
|
| 3 |
"keras_nlp_version": "0.10.0",
|
| 4 |
+
"parameter_count": 124439808,
|
| 5 |
+
"date_saved": "2024-05-02@16:48:55"
|
| 6 |
}
|
model.weights.h5
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3a175c71ca3bb821790dc6c78c3720621ecaa16f38e0db531e4fadbd9ada810f
|
| 3 |
+
size 498160592
|
preprocessor.json
CHANGED
|
@@ -1,29 +1,25 @@
|
|
| 1 |
{
|
| 2 |
-
"module": "keras_nlp.src.models.
|
| 3 |
-
"class_name": "
|
| 4 |
"config": {
|
| 5 |
-
"name": "
|
| 6 |
"trainable": true,
|
| 7 |
"dtype": "float32",
|
| 8 |
"tokenizer": {
|
| 9 |
-
"module": "keras_nlp.src.models.
|
| 10 |
-
"class_name": "
|
| 11 |
"config": {
|
| 12 |
-
"name": "
|
| 13 |
"trainable": true,
|
| 14 |
"dtype": "int32",
|
| 15 |
-
"vocabulary": null,
|
| 16 |
"sequence_length": null,
|
| 17 |
-
"
|
| 18 |
-
"strip_accents": false,
|
| 19 |
-
"split": true,
|
| 20 |
-
"suffix_indicator": "##",
|
| 21 |
-
"oov_token": "[UNK]"
|
| 22 |
},
|
| 23 |
-
"registered_name": "keras_nlp>
|
| 24 |
},
|
| 25 |
-
"sequence_length":
|
| 26 |
-
"
|
|
|
|
| 27 |
},
|
| 28 |
-
"registered_name": "keras_nlp>
|
| 29 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"module": "keras_nlp.src.models.gpt2.gpt2_causal_lm_preprocessor",
|
| 3 |
+
"class_name": "GPT2CausalLMPreprocessor",
|
| 4 |
"config": {
|
| 5 |
+
"name": "gpt2_causal_lm_preprocessor",
|
| 6 |
"trainable": true,
|
| 7 |
"dtype": "float32",
|
| 8 |
"tokenizer": {
|
| 9 |
+
"module": "keras_nlp.src.models.gpt2.gpt2_tokenizer",
|
| 10 |
+
"class_name": "GPT2Tokenizer",
|
| 11 |
"config": {
|
| 12 |
+
"name": "gpt2_tokenizer",
|
| 13 |
"trainable": true,
|
| 14 |
"dtype": "int32",
|
|
|
|
| 15 |
"sequence_length": null,
|
| 16 |
+
"add_prefix_space": false
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
},
|
| 18 |
+
"registered_name": "keras_nlp>GPT2Tokenizer"
|
| 19 |
},
|
| 20 |
+
"sequence_length": 1024,
|
| 21 |
+
"add_start_token": true,
|
| 22 |
+
"add_end_token": true
|
| 23 |
},
|
| 24 |
+
"registered_name": "keras_nlp>GPT2CausalLMPreprocessor"
|
| 25 |
}
|
task.json
CHANGED
|
@@ -1,57 +1,49 @@
|
|
| 1 |
{
|
| 2 |
-
"module": "keras_nlp.src.models.
|
| 3 |
-
"class_name": "
|
| 4 |
"config": {
|
| 5 |
"backbone": {
|
| 6 |
-
"module": "keras_nlp.src.models.
|
| 7 |
-
"class_name": "
|
| 8 |
"config": {
|
| 9 |
-
"name": "
|
| 10 |
"trainable": true,
|
| 11 |
-
"vocabulary_size":
|
| 12 |
-
"num_layers":
|
| 13 |
-
"num_heads":
|
| 14 |
-
"hidden_dim":
|
| 15 |
-
"intermediate_dim":
|
| 16 |
"dropout": 0.1,
|
| 17 |
-
"max_sequence_length":
|
| 18 |
-
"num_segments": 2
|
| 19 |
},
|
| 20 |
-
"registered_name": "keras_nlp>
|
| 21 |
},
|
| 22 |
"preprocessor": {
|
| 23 |
-
"module": "keras_nlp.src.models.
|
| 24 |
-
"class_name": "
|
| 25 |
"config": {
|
| 26 |
-
"name": "
|
| 27 |
"trainable": true,
|
| 28 |
"dtype": "float32",
|
| 29 |
"tokenizer": {
|
| 30 |
-
"module": "keras_nlp.src.models.
|
| 31 |
-
"class_name": "
|
| 32 |
"config": {
|
| 33 |
-
"name": "
|
| 34 |
"trainable": true,
|
| 35 |
"dtype": "int32",
|
| 36 |
-
"vocabulary": null,
|
| 37 |
"sequence_length": null,
|
| 38 |
-
"
|
| 39 |
-
"strip_accents": false,
|
| 40 |
-
"split": true,
|
| 41 |
-
"suffix_indicator": "##",
|
| 42 |
-
"oov_token": "[UNK]"
|
| 43 |
},
|
| 44 |
-
"registered_name": "keras_nlp>
|
| 45 |
},
|
| 46 |
-
"sequence_length":
|
| 47 |
-
"
|
|
|
|
| 48 |
},
|
| 49 |
-
"registered_name": "keras_nlp>
|
| 50 |
},
|
| 51 |
-
"name": "
|
| 52 |
-
"num_classes": 2,
|
| 53 |
-
"activation": "linear",
|
| 54 |
-
"dropout": 0.1
|
| 55 |
},
|
| 56 |
-
"registered_name": "keras_nlp>
|
| 57 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"module": "keras_nlp.src.models.gpt2.gpt2_causal_lm",
|
| 3 |
+
"class_name": "GPT2CausalLM",
|
| 4 |
"config": {
|
| 5 |
"backbone": {
|
| 6 |
+
"module": "keras_nlp.src.models.gpt2.gpt2_backbone",
|
| 7 |
+
"class_name": "GPT2Backbone",
|
| 8 |
"config": {
|
| 9 |
+
"name": "gpt2_backbone",
|
| 10 |
"trainable": true,
|
| 11 |
+
"vocabulary_size": 50257,
|
| 12 |
+
"num_layers": 12,
|
| 13 |
+
"num_heads": 12,
|
| 14 |
+
"hidden_dim": 768,
|
| 15 |
+
"intermediate_dim": 3072,
|
| 16 |
"dropout": 0.1,
|
| 17 |
+
"max_sequence_length": 1024
|
|
|
|
| 18 |
},
|
| 19 |
+
"registered_name": "keras_nlp>GPT2Backbone"
|
| 20 |
},
|
| 21 |
"preprocessor": {
|
| 22 |
+
"module": "keras_nlp.src.models.gpt2.gpt2_causal_lm_preprocessor",
|
| 23 |
+
"class_name": "GPT2CausalLMPreprocessor",
|
| 24 |
"config": {
|
| 25 |
+
"name": "gpt2_causal_lm_preprocessor",
|
| 26 |
"trainable": true,
|
| 27 |
"dtype": "float32",
|
| 28 |
"tokenizer": {
|
| 29 |
+
"module": "keras_nlp.src.models.gpt2.gpt2_tokenizer",
|
| 30 |
+
"class_name": "GPT2Tokenizer",
|
| 31 |
"config": {
|
| 32 |
+
"name": "gpt2_tokenizer",
|
| 33 |
"trainable": true,
|
| 34 |
"dtype": "int32",
|
|
|
|
| 35 |
"sequence_length": null,
|
| 36 |
+
"add_prefix_space": false
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
},
|
| 38 |
+
"registered_name": "keras_nlp>GPT2Tokenizer"
|
| 39 |
},
|
| 40 |
+
"sequence_length": 1024,
|
| 41 |
+
"add_start_token": true,
|
| 42 |
+
"add_end_token": true
|
| 43 |
},
|
| 44 |
+
"registered_name": "keras_nlp>GPT2CausalLMPreprocessor"
|
| 45 |
},
|
| 46 |
+
"name": "gpt2_causal_lm"
|
|
|
|
|
|
|
|
|
|
| 47 |
},
|
| 48 |
+
"registered_name": "keras_nlp>GPT2CausalLM"
|
| 49 |
}
|
tokenizer.json
CHANGED
|
@@ -1,17 +1,12 @@
|
|
| 1 |
{
|
| 2 |
-
"module": "keras_nlp.src.models.
|
| 3 |
-
"class_name": "
|
| 4 |
"config": {
|
| 5 |
-
"name": "
|
| 6 |
"trainable": true,
|
| 7 |
"dtype": "int32",
|
| 8 |
-
"vocabulary": null,
|
| 9 |
"sequence_length": null,
|
| 10 |
-
"
|
| 11 |
-
"strip_accents": false,
|
| 12 |
-
"split": true,
|
| 13 |
-
"suffix_indicator": "##",
|
| 14 |
-
"oov_token": "[UNK]"
|
| 15 |
},
|
| 16 |
-
"registered_name": "keras_nlp>
|
| 17 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"module": "keras_nlp.src.models.gpt2.gpt2_tokenizer",
|
| 3 |
+
"class_name": "GPT2Tokenizer",
|
| 4 |
"config": {
|
| 5 |
+
"name": "gpt2_tokenizer",
|
| 6 |
"trainable": true,
|
| 7 |
"dtype": "int32",
|
|
|
|
| 8 |
"sequence_length": null,
|
| 9 |
+
"add_prefix_space": false
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
},
|
| 11 |
+
"registered_name": "keras_nlp>GPT2Tokenizer"
|
| 12 |
}
|