SIRIS-Lab/SciLake-Neuroscience-GLiNER-large
1
SciLake Neuroscience named-entity recognition
GLiNER-large model finetuned on a selection of relevant entities in the domain of neuroscience, from the openMINDS controlled terms:
UBERONParcellationspeciespreparationTypetechniquebiologicalSex
Usage
from gliner import GLiNER
LABELS = ['UBERONParcellation', 'species', 'preparationType', 'technique', 'biologicalSex']
THRESHOLD = xxx # choose your threshold
model = GLiNER.from_pretrained('SIRIS-Lab/SciLake-Neuroscience-GLiNER-large')
entities = model.predict_entities(to_tag, labels=LABELS, threshold=THRESHOLD)