FreakingPotato commited on
Commit
fc3c6c9
·
verified ·
1 Parent(s): a4e6e2f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +3 -2
README.md CHANGED
@@ -36,11 +36,12 @@ NucEL is a specialized language model designed for nucleotide sequence analysis
36
  ### Basic Usage
37
 
38
  ```python
39
- from transformers import AutoModel, AutoTokenizer
 
40
 
41
  # Load model and tokenizer
42
  model = AutoModel.from_pretrained("FreakingPotato/NucEL", trust_remote_code=True)
43
- tokenizer = AutoTokenizer.from_pretrained("FreakingPotato/NucEL", trust_remote_code=True)
44
 
45
  # Example DNA sequence
46
  sequence = "ATCGATCGATCGATCG"
 
36
  ### Basic Usage
37
 
38
  ```python
39
+ from transformers import AutoModel
40
+ from tokenizer import NucEL_Tokenizer
41
 
42
  # Load model and tokenizer
43
  model = AutoModel.from_pretrained("FreakingPotato/NucEL", trust_remote_code=True)
44
+ tokenizer = NucEL_Tokenizer.from_pretrained("FreakingPotato/NucEL", trust_remote_code=True)
45
 
46
  # Example DNA sequence
47
  sequence = "ATCGATCGATCGATCG"