SkywalkerLu commited on
Commit
42fae51
1 Parent(s): e2e3dc6

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -26,7 +26,7 @@ pip3 install torch torchvision torchaudio --index-url https://download.pytorch.o
26
  pip install transformers
27
  pip install fair-esm
28
  ```
29
- Here is how to use TransHLA_I model to predict the peptide whether epitope:
30
 
31
  ```python
32
  from transformers import AutoTokenizer
@@ -43,7 +43,7 @@ def pad_inner_lists_to_length(outer_list,target_length=16):
43
  return outer_list
44
 
45
 
46
- if __name__ = "__main__":
47
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
48
  print(f"Using {device} device")
49
  tokenizer = AutoTokenizer.from_pretrained("facebook/esm2_t33_650M_UR50D")
 
26
  pip install transformers
27
  pip install fair-esm
28
  ```
29
+ Here is how to use TransHLA_I model to predict whether a peptide is an epitope:
30
 
31
  ```python
32
  from transformers import AutoTokenizer
 
43
  return outer_list
44
 
45
 
46
+ if __name__ == "__main__":
47
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
48
  print(f"Using {device} device")
49
  tokenizer = AutoTokenizer.from_pretrained("facebook/esm2_t33_650M_UR50D")