ICD-9 Diseases Code Classifier
Collection
BERT based models finetuned for disease classification tasks • 4 items • Updated
How to use ashishkgpian/biolink_large_disease_classification with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="ashishkgpian/biolink_large_disease_classification") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("ashishkgpian/biolink_large_disease_classification")
model = AutoModelForSequenceClassification.from_pretrained("ashishkgpian/biolink_large_disease_classification")BioLinkBERT is a specialized language model designed for biomedical natural language processing tasks. It leverages advanced techniques to understand and process medical and scientific text with high accuracy and context-awareness.
BioLinkBERT can be applied to various biomedical natural language processing tasks, including:
Potential applications include:
from transformers import AutoModelForSequenceClassification, AutoTokenizer
# Load BioLinkBERT model and tokenizer
model = AutoModelForSequenceClassification.from_pretrained('biolinkbert-path')
tokenizer = AutoTokenizer.from_pretrained('biolinkbert-path')
# Example usage for text classification
def classify_biomedical_text(text):
inputs = tokenizer(text, return_tensors="pt", truncation=True, max_length=512)
outputs = model(**inputs)
# Add specific classification logic based on your task
return outputs
BibTeX:
[To be added when research is published]
APA: [Citation details to be added]
For detailed information about the model's development, performance, and specific capabilities, please contact the model developers.
[Names or affiliations of model card authors]
[Contact information for further inquiries]
Base model
michiyasunaga/BioLinkBERT-large