hdallatorre
commited on
Commit
•
ea9e763
1
Parent(s):
e7798fb
Update README.md
Browse files
README.md
CHANGED
@@ -38,10 +38,10 @@ pip install --upgrade git+https://github.com/huggingface/transformers.git
|
|
38 |
|
39 |
A small snippet of code is given here in order to retrieve both logits and embeddings from a dummy DNA sequence.
|
40 |
```
|
41 |
-
⚠️ The maximum sequence length is set by default at the training length of 30,000 nucleotides, or 5001 tokens (accounting for the CLS token). However, Segment-NT has
|
42 |
-
shown to generalize up to sequences of 50,000 bp. In case you need to infer on sequences between 30kbp and 50kbp, make sure to change the `rescaling_factor`
|
43 |
-
the config to `num_dna_tokens_inference / max_num_tokens_nt` where `num_dna_tokens_inference` is the number of tokens at inference
|
44 |
-
pairs) and `max_num_tokens_nt` is the max number of tokens on which the backbone nucleotide-transformer was trained on, i.e `2048`.
|
45 |
```
|
46 |
|
47 |
```python
|
|
|
38 |
|
39 |
A small snippet of code is given here in order to retrieve both logits and embeddings from a dummy DNA sequence.
|
40 |
```
|
41 |
+
⚠️ The maximum sequence length is set by default at the training length of 30,000 nucleotides, or 5001 tokens (accounting for the CLS token). However, Segment-NT has
|
42 |
+
been shown to generalize up to sequences of 50,000 bp. In case you need to infer on sequences between 30kbp and 50kbp, make sure to change the `rescaling_factor`
|
43 |
+
argument in the config to `num_dna_tokens_inference / max_num_tokens_nt` where `num_dna_tokens_inference` is the number of tokens at inference
|
44 |
+
(i.e 6669 for a sequence of 40008 base pairs) and `max_num_tokens_nt` is the max number of tokens on which the backbone nucleotide-transformer was trained on, i.e `2048`.
|
45 |
```
|
46 |
|
47 |
```python
|