zweny / RE-Matching

This repository contains the offical code implementation of the ACL2023 paper "RE-Matching: A Fine-Grained Semantic Matching Method for Zero-Shot Relation Extraction"
5 stars 1 forks source link

Is this a Pretrained model? #1

Closed YK-YR closed 9 months ago

YK-YR commented 10 months ago

Can I directly use this model to achieve some relation extraction tasks without training?

zweny commented 10 months ago

We use BERT(or roberta\ albert ) as the foundation model for our experiments. Direct application of these models to downstream tasks ( e.g., relation extraction ) does not yield satisfactory results. you'll need to do some fine-tuning If you want to do relation extraction task :)

YK-YR commented 10 months ago

Thank you for your advices. I get it.