Fill-Mask
Transformers
PyTorch
Joblib
DNA
biology
genomics
custom_code
Inference Endpoints
hdallatorre commited on
Commit
a973934
1 Parent(s): 2083567

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -0
README.md CHANGED
@@ -42,6 +42,11 @@ import torch
42
  tokenizer = AutoTokenizer.from_pretrained("InstaDeepAI/nucleotide-transformer-v2-250m-multi-species", trust_remote_code=True)
43
  model = AutoModelForMaskedLM.from_pretrained("InstaDeepAI/nucleotide-transformer-v2-250m-multi-species", trust_remote_code=True)
44
 
 
 
 
 
 
45
  # Create a dummy dna sequence and tokenize it
46
  sequences = ["ATTCCGATTCCGATTCCG", "ATTTCTCTCTCTCTCTGAGATCGATCGATCGAT"]
47
  tokens_ids = tokenizer.batch_encode_plus(sequences, return_tensors="pt", padding="max_length", max_length = max_length)["input_ids"]
 
42
  tokenizer = AutoTokenizer.from_pretrained("InstaDeepAI/nucleotide-transformer-v2-250m-multi-species", trust_remote_code=True)
43
  model = AutoModelForMaskedLM.from_pretrained("InstaDeepAI/nucleotide-transformer-v2-250m-multi-species", trust_remote_code=True)
44
 
45
+ # Choose the length to which the input sequences are padded. By default, the
46
+ # model max length is chosen, but feel free to decrease it as the time taken to
47
+ # obtain the embeddings increases significantly with it.
48
+ max_length = 15
49
+
50
  # Create a dummy dna sequence and tokenize it
51
  sequences = ["ATTCCGATTCCGATTCCG", "ATTTCTCTCTCTCTCTGAGATCGATCGATCGAT"]
52
  tokens_ids = tokenizer.batch_encode_plus(sequences, return_tensors="pt", padding="max_length", max_length = max_length)["input_ids"]