lovegemini63
commited on
Commit
•
83eb4b7
1
Parent(s):
8755973
Upload TFEsmForTokenClassification
Browse files- README.md +58 -0
- config.json +40 -0
- tf_model.h5 +3 -0
README.md
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
base_model: facebook/esm2_t12_35M_UR50D
|
4 |
+
tags:
|
5 |
+
- generated_from_keras_callback
|
6 |
+
model-index:
|
7 |
+
- name: esm2_t12_35M_UR50D-finetuned-secondary-structure-classification
|
8 |
+
results: []
|
9 |
+
---
|
10 |
+
|
11 |
+
<!-- This model card has been generated automatically according to the information Keras had access to. You should
|
12 |
+
probably proofread and complete it, then remove this comment. -->
|
13 |
+
|
14 |
+
# esm2_t12_35M_UR50D-finetuned-secondary-structure-classification
|
15 |
+
|
16 |
+
This model is a fine-tuned version of [facebook/esm2_t12_35M_UR50D](https://huggingface.co/facebook/esm2_t12_35M_UR50D) on an unknown dataset.
|
17 |
+
It achieves the following results on the evaluation set:
|
18 |
+
- Train Loss: 0.4094
|
19 |
+
- Train Masked Accuracy: 0.8336
|
20 |
+
- Validation Loss: 0.4593
|
21 |
+
- Validation Masked Accuracy: 0.8097
|
22 |
+
- Epoch: 2
|
23 |
+
|
24 |
+
## Model description
|
25 |
+
|
26 |
+
More information needed
|
27 |
+
|
28 |
+
## Intended uses & limitations
|
29 |
+
|
30 |
+
More information needed
|
31 |
+
|
32 |
+
## Training and evaluation data
|
33 |
+
|
34 |
+
More information needed
|
35 |
+
|
36 |
+
## Training procedure
|
37 |
+
|
38 |
+
### Training hyperparameters
|
39 |
+
|
40 |
+
The following hyperparameters were used during training:
|
41 |
+
- optimizer: {'name': 'AdamWeightDecay', 'learning_rate': 2e-05, 'decay': 0.0, 'beta_1': 0.9, 'beta_2': 0.999, 'epsilon': 1e-07, 'amsgrad': False, 'weight_decay_rate': 0.0}
|
42 |
+
- training_precision: float32
|
43 |
+
|
44 |
+
### Training results
|
45 |
+
|
46 |
+
| Train Loss | Train Masked Accuracy | Validation Loss | Validation Masked Accuracy | Epoch |
|
47 |
+
|:----------:|:---------------------:|:---------------:|:--------------------------:|:-----:|
|
48 |
+
| 0.5854 | 0.7507 | 0.5221 | 0.7858 | 0 |
|
49 |
+
| 0.4522 | 0.8153 | 0.4683 | 0.8065 | 1 |
|
50 |
+
| 0.4094 | 0.8336 | 0.4593 | 0.8097 | 2 |
|
51 |
+
|
52 |
+
|
53 |
+
### Framework versions
|
54 |
+
|
55 |
+
- Transformers 4.33.2
|
56 |
+
- TensorFlow 2.13.0
|
57 |
+
- Datasets 2.14.5
|
58 |
+
- Tokenizers 0.13.3
|
config.json
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "facebook/esm2_t12_35M_UR50D",
|
3 |
+
"architectures": [
|
4 |
+
"EsmForTokenClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.0,
|
7 |
+
"classifier_dropout": null,
|
8 |
+
"emb_layer_norm_before": false,
|
9 |
+
"esmfold_config": null,
|
10 |
+
"hidden_act": "gelu",
|
11 |
+
"hidden_dropout_prob": 0.0,
|
12 |
+
"hidden_size": 480,
|
13 |
+
"id2label": {
|
14 |
+
"0": "LABEL_0",
|
15 |
+
"1": "LABEL_1",
|
16 |
+
"2": "LABEL_2"
|
17 |
+
},
|
18 |
+
"initializer_range": 0.02,
|
19 |
+
"intermediate_size": 1920,
|
20 |
+
"is_folding_model": false,
|
21 |
+
"label2id": {
|
22 |
+
"LABEL_0": 0,
|
23 |
+
"LABEL_1": 1,
|
24 |
+
"LABEL_2": 2
|
25 |
+
},
|
26 |
+
"layer_norm_eps": 1e-05,
|
27 |
+
"mask_token_id": 32,
|
28 |
+
"max_position_embeddings": 1026,
|
29 |
+
"model_type": "esm",
|
30 |
+
"num_attention_heads": 20,
|
31 |
+
"num_hidden_layers": 12,
|
32 |
+
"pad_token_id": 1,
|
33 |
+
"position_embedding_type": "rotary",
|
34 |
+
"token_dropout": true,
|
35 |
+
"torch_dtype": "float32",
|
36 |
+
"transformers_version": "4.33.2",
|
37 |
+
"use_cache": true,
|
38 |
+
"vocab_list": null,
|
39 |
+
"vocab_size": 33
|
40 |
+
}
|
tf_model.h5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:802ffbc4227ff44eb92aac9ddd9ebac697b7b86d95b19b87bfe8323dd39d28d7
|
3 |
+
size 133389968
|