BioNExt
Collection
Models for: "Towards Discovery: An End-to-End System for Uncovering Novel Biomedical Relations" • 2 items • Updated
# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("IEETA/BioNExt-Tagger", trust_remote_code=True, dtype="auto")
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="IEETA/BioNExt-Tagger", trust_remote_code=True)