jimnoneill
commited on
Commit
•
ed277d4
1
Parent(s):
f3b0cfc
Update README.md
Browse files
README.md
CHANGED
@@ -31,7 +31,7 @@ outputs = model(**inputs)
|
|
31 |
|
32 |
# The outputs are raw logits; apply a softmax function to obtain probabilities
|
33 |
probabilities = torch.nn.functional.softmax(outputs.logits, dim=-1)
|
34 |
-
|
35 |
|
36 |
Limitations and Bias
|
37 |
The model was trained on a specific dataset with particular characteristics. It might not generalize well to organisms with different genomic properties, such as a significantly different GC content.
|
|
|
31 |
|
32 |
# The outputs are raw logits; apply a softmax function to obtain probabilities
|
33 |
probabilities = torch.nn.functional.softmax(outputs.logits, dim=-1)
|
34 |
+
```
|
35 |
|
36 |
Limitations and Bias
|
37 |
The model was trained on a specific dataset with particular characteristics. It might not generalize well to organisms with different genomic properties, such as a significantly different GC content.
|