DianLiI commited on
Commit
8d3fcea
·
verified ·
1 Parent(s): ec61ce7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -2
README.md CHANGED
@@ -44,5 +44,9 @@ collated_batch = model.collate({"sequences": ["ACGT", "ACGT"]})
44
  logits = model(collated_batch)
45
  print(logits)
46
  ```
47
- ## And many more!
48
- [Model Generator](https://github.com/genbio-ai/test)
 
 
 
 
 
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)