AmelieSchreiber commited on
Commit
bb3e6db
1 Parent(s): b8c42ac

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -0
README.md CHANGED
@@ -6,10 +6,25 @@ license: mit
6
 
7
  This is a LoRA finetuned version of `esm2_t12_35M_UR50D` for predicting post translational modification sites.
8
 
 
 
 
 
 
 
 
 
 
 
 
9
 
10
  ## Using the Model
11
 
12
  To use this model, run the following:
 
 
 
 
13
 
14
  ```python
15
  from transformers import AutoModelForTokenClassification, AutoTokenizer
 
6
 
7
  This is a LoRA finetuned version of `esm2_t12_35M_UR50D` for predicting post translational modification sites.
8
 
9
+ ## Metrics
10
+
11
+ ```python
12
+ "eval_loss": 0.4661065936088562,
13
+ "eval_accuracy": 0.9876599555715365,
14
+ "eval_auc": 0.8673592596422711,
15
+ "eval_precision": 0.14941997670219148,
16
+ "eval_recall": 0.7463955099754822
17
+ "eval_f1": 0.24899413187145658,
18
+ "eval_mcc": 0.3305508498121041,
19
+ ```
20
 
21
  ## Using the Model
22
 
23
  To use this model, run the following:
24
+ ```
25
+ !pip install transformers -q
26
+ !pip install peft -q
27
+ ```
28
 
29
  ```python
30
  from transformers import AutoModelForTokenClassification, AutoTokenizer