--- language: - es tags: - biomedical - clinical - EHR - NER - named-entity-recognition - token-classification - multiclinner - es - procedure license: cc-by-4.0 metrics: - f1 base_model: - BSC-LT/MrBERT-biomed pipeline_tag: token-classification model-index: - name: BSC-NLP4BIA/multiclinner-es-procedure-MrBERT-biomed results: - task: type: token-classification dataset: name: MultiClinNER es procedure (test) type: MultiClinNER metrics: - name: strict F1 type: f1 value: 0.641 - name: char F1 (gold) type: f1 value: 0.744 --- # multiclinner-es-procedure-MrBERT-biomed ## Table of contents
Click to expand - [Model description](#model-description) - [How to use](#how-to-use) - [Evaluation](#evaluation) - [Limitations and bias](#limitations-and-bias) - [Additional information](#additional-information) - [Authors](#authors) - [Contact information](#contact-information) - [Funding](#funding) - [Citing information](#citing-information) - [Disclaimer](#disclaimer)
## Model description A fine-tuned version of [BSC-LT/MrBERT-biomed](https://huggingface.co/BSC-LT/MrBERT-biomed) for **PROCEDURE Named Entity Recognition** in Spanish clinical text. It was developed for MultiClinNER, a subtask of the [MultiClinAI shared task](https://temu.bsc.es/MultiClinAI/) organized by the NLP4BIA team at the Barcelona Supercomputing Center as part of the #SMM4H-HeaRD Workshop at the ACL 2026 conference. The model labels mentions of **PROCEDURE** using the BIO tagging scheme: `O`, `B-PROCEDURE`, `I-PROCEDURE`. ## How to use ⚠ We recommend pre-tokenizing the input text into words instead of providing it directly to the model, as this is how the model was trained. Otherwise, the results and performance might get affected. ```python from transformers import pipeline ner = pipeline( "token-classification", model="BSC-NLP4BIA/multiclinner-es-procedure-MrBERT-biomed", aggregation_strategy="simple", ) ner("...clinical text in Spanish...") ``` ## Evaluation Scores were computed with the official [MultiClinAIEval](https://github.com/nlp4bia-bsc/MultiClinAIEval) library on the MultiClinNER **Spanish** gold-standard test documents for **PROCEDURE** (the shared-task gold set for this language and entity type). | Metric | Score | Definition | |---|---|---| | strict F1 | 0.641 | exact match of both entity span (start/end) and label | | char F1 (gold) | 0.744 | character-level F1, restricted to the gold-standard documents | See the [MultiClinAI shared task](https://temu.bsc.es/MultiClinAI/) for the full evaluation protocol. ## Limitations and bias At the time of submission, no measures have been taken to estimate the bias embedded in the model. However, we are well aware that our models may be biased. We intend to conduct research in these areas in the future, and if completed, this model card will be updated. ## Additional information ### Authors NLP4BIA team at the Barcelona Supercomputing Center (nlp4bia@bsc.es). ### Contact information jan.rodriguez [at] bsc.es ### Funding More information will be available soon. ### Citing information Please cite the MultiClinAI shared task overview paper (forthcoming). ```bibtex ``` ### Disclaimer The models published in this repository are intended for a generalist purpose and are available to third parties. These models may have bias and/or any other undesirable distortions. When third parties deploy or provide systems and/or services to other parties using any of these models (or using systems based on these models) or become users of the models, they should note that it is their responsibility to mitigate the risks arising from their use and, in any event, to comply with applicable regulations, including regulations regarding the use of artificial intelligence. --- Los modelos publicados en este repositorio tienen una finalidad generalista y están a disposición de terceros. Estos modelos pueden tener sesgos y/u otro tipo de distorsiones indeseables. Cuando terceros desplieguen o proporcionen sistemas y/o servicios a otras partes usando alguno de estos modelos (o utilizando sistemas basados en estos modelos) o se conviertan en usuarios de los modelos, deben tener en cuenta que es su responsabilidad mitigar los riesgos derivados de su uso y, en todo caso, cumplir con la normativa aplicable, incluyendo la normativa en materia de uso de inteligencia artificial.