FarmerTao commited on
Commit
c1bd2e4
1 Parent(s): 52eadfe

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -4
README.md CHANGED
@@ -6,17 +6,35 @@ library_name: peft
6
  # Model Card for Model ID
7
 
8
  <!-- Provide a quick summary of what the model is/does. -->
9
- This model is used to predict mutation fitness score of protein DLG4_RAT. The dataset is from [SESNet: sequence-structure feature-integrated deep learning method for data-efficient protein engineering](https://jcheminf.biomedcentral.com/articles/10.1186/s13321-023-00688-x).
10
 
11
  ### Task type
12
-
13
  ### Dataset description
14
-
15
  ### Model input type
16
-
17
  ### Performance
18
 
 
19
  ### LoRA config
 
 
 
 
20
 
21
  ### Training config
 
 
 
 
 
 
 
 
 
 
 
 
 
22
 
 
6
  # Model Card for Model ID
7
 
8
  <!-- Provide a quick summary of what the model is/does. -->
9
+ This model is used to predict mutation fitness score of protein DLG4_RAT.
10
 
11
  ### Task type
12
+ protein level regression
13
  ### Dataset description
14
+ The dataset is from [SESNet: sequence-structure feature-integrated deep learning method for data-efficient protein engineering](https://jcheminf.biomedcentral.com/articles/10.1186/s13321-023-00688-x).
15
  ### Model input type
16
+ Amino acid sequence
17
  ### Performance
18
 
19
+
20
  ### LoRA config
21
+ lora_dropout: 0.0
22
+ lora_alpha: 16
23
+ target_modules: ["query", "key", "value", "intermediate.dense", "output.dense"]
24
+ modules_to_save: ["classifier"]
25
 
26
  ### Training config
27
+ class: AdamW
28
+
29
+ betas: (0.9, 0.98)
30
+
31
+ weight_decay: 0.01
32
+
33
+ learning rate: 1e-4
34
+
35
+ epoch: 50
36
+
37
+ batch size: 2
38
+
39
+ precision: 16-mixed
40