Source code for pyabsa.tasks.AspectSentimentTripletExtraction.models

# -*- coding: utf-8 -*-
# file: __init__.py
# time: 02/11/2022 15:47
# author: YANG, HENG <hy345@exeter.ac.uk> (杨恒)
# github: https://github.com/yangheng95
# GScholar: https://scholar.google.com/citations?user=NPq5a_0AAAAJ&hl=en
# ResearchGate: https://www.researchgate.net/profile/Heng-Yang-17/research
# Copyright (C) 2022. All Rights Reserved.


[docs] class ASTEModelList(list): from .model import EMCGCN
[docs] EMCGCN = EMCGCN
def __init__(self): super(ASTEModelList, self).__init__([self.EMCGCN])