Update README.md
Browse files
README.md
CHANGED
@@ -44,5 +44,9 @@ collated_batch = model.collate({"sequences": ["ACGT", "ACGT"]})
|
|
44 |
logits = model(collated_batch)
|
45 |
print(logits)
|
46 |
```
|
47 |
-
##
|
48 |
-
|
|
|
|
|
|
|
|
|
|
44 |
logits = model(collated_batch)
|
45 |
print(logits)
|
46 |
```
|
47 |
+
## Or use our one-liner CLI to finetune, evaluate any of the above!
|
48 |
+
```
|
49 |
+
gbft fit --model SequenceClassification --model.backbone dna300m --data SequenceClassification --data.path <hf_or_local_path_to_your_dataset>
|
50 |
+
gbft test --model SequenceClassification --model.backbone dna300m --data SequenceClassification --data.path <hf_or_local_path_to_your_dataset>
|
51 |
+
```
|
52 |
+
For more information, visit: [Model Generator](https://github.com/genbio-ai/test)
|