Upload README.md with huggingface_hub
Browse files
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
|
|
|
|
| 40 |
|
| 41 |
# Load model and tokenizer
|
| 42 |
model = AutoModel.from_pretrained("FreakingPotato/NucEL", trust_remote_code=True)
|
| 43 |
-
tokenizer =
|
| 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"
|