hdallatorre commited on
Commit
93a6cca
1 Parent(s): 263ad58

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -17
README.md CHANGED
@@ -42,23 +42,6 @@ A small snippet of code is given here in order to retrieve both logits and embed
42
  from transformers import AutoTokenizer, AutoModel
43
  import torch
44
 
45
- features = [
46
- "protein_coding_gene",
47
- "lncRNA",
48
- "exon",
49
- "intron",
50
- "splice_donor",
51
- "splice_acceptor",
52
- "5UTR",
53
- "3UTR",
54
- "CTCF-bound",
55
- "polyA_signal",
56
- "enhancer_Tissue_specific",
57
- "enhancer_Tissue_invariant",
58
- "promoter_Tissue_specific",
59
- "promoter_Tissue_invariant",
60
- ]
61
-
62
  tokenizer = AutoTokenizer.from_pretrained("InstaDeepAI/segment_nt_multi_species", trust_remote_code=True)
63
  model = AutoModel.from_pretrained("InstaDeepAI/segment_nt_multi_species", trust_remote_code=True)
64
 
 
42
  from transformers import AutoTokenizer, AutoModel
43
  import torch
44
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  tokenizer = AutoTokenizer.from_pretrained("InstaDeepAI/segment_nt_multi_species", trust_remote_code=True)
46
  model = AutoModel.from_pretrained("InstaDeepAI/segment_nt_multi_species", trust_remote_code=True)
47