This model is a Turkish biomedical BERT model fine-tuned for natural language processing tasks in the biomedical domain.
It is based on a pre-trained Turkish BERT model and adapted to better understand domain-specific terminology such as medical concepts, clinical language, and biomedical text.
1from transformers import AutoTokenizer, AutoModel
2
3tokenizer = AutoTokenizer.from_pretrained("emresallak/bert-turkish-biomedical")
4model = AutoModel.from_pretrained("emresallak/bert-turkish-biomedical")