Do Syntactic Features Help Biomedical Relation Extraction? An Empirical Study of Verb Token and Dependency Graph Augmentation
Summary
Mustafa Sikder and Ernest Kwegyir-Afful empirically investigated if explicit syntactic features improve transformer-based biomedical relation extraction when integrated with typed entity marker pooling. Their study evaluated two augmentation strategies on BiomedBERT: verb token augmentation, which concatenates the dependency root verb's hidden state, and a two-layer Graph Convolutional Network (GCN) that refines encoder hidden states over dependency parses. Experiments across ChemProt, DDI, and AIMed datasets revealed neither strategy consistently outperformed the entity-only baseline. The GCN yielded modest F1 gains on AIMed (+0.007) and ChemProt (+0.003) but decreased DDI performance (-0.013). Verb token augmentation only helped AIMed (+0.004). A key finding was DDI's substantially higher passive voice usage (50.7%) compared to AIMed (27.0%) and ChemProt (30.9%), suggesting syntactic augmentation benefits active verbal structures.
Key takeaway
For Machine Learning Engineers optimizing biomedical relation extraction, explicit syntactic features like verb token augmentation or GCNs offer inconsistent and often negligible performance gains. Before integrating such complex augmentations, you should first characterize your dataset's syntactic structure, particularly its passive voice usage. Models benefit more from syntactic features when sentences exhibit active verbal structure, suggesting a targeted approach is crucial to avoid unnecessary computational overhead for minimal returns.
Key insights
Syntactic features in biomedical relation extraction show limited, inconsistent gains, moderated by corpus-level passive voice usage.
Principles
- Syntactic augmentation utility depends on active verbal structure.
- High passive voice usage can hinder syntactic feature benefits.
- Small performance differences warrant cautious interpretation.
Method
Augmented BiomedBERT with either dependency root verb hidden state concatenation or a two-layer Graph Convolutional Network (GCN) refining encoder states over dependency parses for entity pooling.
In practice
- Characterize dataset syntax before applying augmentation.
- Prioritize active voice sentences for syntactic features.
- Consider GCN for modest gains on specific datasets.
Topics
- Biomedical Relation Extraction
- Transformer Models
- Syntactic Features
- Graph Convolutional Networks
- BiomedBERT
- Passive Voice Analysis
Best for: Research Scientist, AI Scientist, Machine Learning Engineer, NLP Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.