nielsr HF Staff commited on
Commit
335f4fb
·
verified ·
1 Parent(s): 18d7275

Improve model card: add pipeline tag, library name, and link to code

Browse files

This PR improves the model card for BarcodeBERT by:
- Adding `pipeline_tag: feature-extraction` to make the model discoverable for this task at https://huggingface.co/models?pipeline_tag=feature-extraction.
- Adding `library_name: transformers` to ensure the "Use in Transformers" widget appears on the model page, providing clear usage instructions.
- Adding a direct link to the associated GitHub repository (`https://github.com/bioscan-ml/BarcodeBERT`) for easier access to the code and reproduction steps.

Files changed (1) hide show
  1. README.md +4 -0
README.md CHANGED
@@ -1,9 +1,13 @@
1
  ---
2
  license: mit
 
 
3
  ---
4
 
5
  [BarcodeBERT](https://arxiv.org/pdf/2311.02401) model trained on all complete DNA sequences from the latest [BOLD database release](http://www.boldsystems.org/index.php/datapackages/Latest). We used the 'nucraw' column of DNA sequences and followed the preprocessing steps outlined in the BarcodeBERT paper.
6
 
 
 
7
  The model has been trained for a total of 17 epochs.
8
 
9
  ## Example Usage
 
1
  ---
2
  license: mit
3
+ pipeline_tag: feature-extraction
4
+ library_name: transformers
5
  ---
6
 
7
  [BarcodeBERT](https://arxiv.org/pdf/2311.02401) model trained on all complete DNA sequences from the latest [BOLD database release](http://www.boldsystems.org/index.php/datapackages/Latest). We used the 'nucraw' column of DNA sequences and followed the preprocessing steps outlined in the BarcodeBERT paper.
8
 
9
+ Code: https://github.com/bioscan-ml/BarcodeBERT
10
+
11
  The model has been trained for a total of 17 epochs.
12
 
13
  ## Example Usage