DiMB-RE: Mining the Scientific Literature for Diet-Microbiome Associations
Paper • 2409.19581 • Published
How to use gbhong/BiomedBERT-fulltext_finetuned_DiMB-RE_FD with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gbhong/BiomedBERT-fulltext_finetuned_DiMB-RE_FD") # Load model directly
from transformers import AutoTokenizer, BertForRelation
tokenizer = AutoTokenizer.from_pretrained("gbhong/BiomedBERT-fulltext_finetuned_DiMB-RE_FD")
model = BertForRelation.from_pretrained("gbhong/BiomedBERT-fulltext_finetuned_DiMB-RE_FD")This is a fine-tuned Factuality Detection (FD) model based on the BiomedNLP-BiomedBERT-base-uncased model, specifically designed for sentence classification task to assign factuality level for extracted relations for diet, human metabolism and microbiome field. The model has been trained on the DiMB-RE dataset and is optimized to infer factuality with 3 factuality level.
The model has been evaluated on the DiMB-RE using the following metrics:
If you use this model, please cite like below:
@misc{hong2024dimbreminingscientificliterature,
title={DiMB-RE: Mining the Scientific Literature for Diet-Microbiome Associations},
author={Gibong Hong and Veronica Hindle and Nadine M. Veasley and Hannah D. Holscher and Halil Kilicoglu},
year={2024},
eprint={2409.19581},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2409.19581},
}