<?xml version="1.0" encoding="UTF-8"?>
<TEI xml:space="preserve" xmlns="http://www.tei-c.org/ns/1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.tei-c.org/ns/1.0 https://raw.githubusercontent.com/kermitt2/grobid/master/grobid-home/schemas/xsd/Grobid.xsd"
 xmlns:xlink="http://www.w3.org/1999/xlink">
	<teiHeader xml:lang="en">
		<fileDesc>
			<titleStmt>
				<title level="a" type="main">A Comprehensive Framework for Aspect-Category Sentiment Analysis</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Loris</forename><surname>Di Quilio</surname></persName>
							<email>loris.diquilio@studenti.unich.it</email>
							<affiliation key="aff0">
								<orgName type="department">DEc</orgName>
								<orgName type="institution">University of Chieti-Pescara</orgName>
								<address>
									<country key="IT">Italy</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Fabio</forename><surname>Fioravanti</surname></persName>
							<email>fabio.fioravanti@unich.it</email>
							<affiliation key="aff0">
								<orgName type="department">DEc</orgName>
								<orgName type="institution">University of Chieti-Pescara</orgName>
								<address>
									<country key="IT">Italy</country>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">A Comprehensive Framework for Aspect-Category Sentiment Analysis</title>
					</analytic>
					<monogr>
						<idno type="ISSN">1613-0073</idno>
					</monogr>
					<idno type="MD5">2FEF068A31D15E2DFB4C8AAF5A7490E4</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2025-04-23T16:38+0000">
					<desc>GROBID - A machine learning software for extracting information from scholarly documents</desc>
					<ref target="https://github.com/kermitt2/grobid"/>
				</application>
			</appInfo>
		</encodingDesc>
		<profileDesc>
			<textClass>
				<keywords>
					<term>Aspect-Category Sentiment Analysis (ACSA)</term>
					<term>Aspect-Based Sentiment Analysis (ABSA)</term>
					<term>Annotations</term>
					<term>Sentiment Index</term>
				</keywords>
			</textClass>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>In this study, we developed an Aspect-Category Sentiment Analysis (ACSA) framework encompassing data conversion, semi-automatic annotation methods using predictions, and the creation of a prediction-based report. We aimed to adapt an Aspect-Category-Opinion Sentiment (ACOS) tool from the literature to the Aspect-Category Sentiment Analysis (ACSA) task. We developed a web application where the dataset released in this paper (beauty dataset) can be annotated manually or semi-automatically and incorporated into the training data to enhance the model. Additionally, we also evaluated our framework using various datasets available in the literature, comparing with a tool that follows a similar approach.</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1.">Introduction</head><p>Aspect category sentiment analysis (ACSA) is a sub-category of Aspect-Based Sentiment Analysis (ABSA) that aims at identifying the aspect categories and corresponding sentiments involved in a sentence, regardless of whether the aspect terms are explicitly mentioned or not <ref type="bibr" target="#b1">[2]</ref>.</p><p>This challenging task requires understanding context and linguistic nuances. For example, an aspect may be mentioned implicitly rather than explicitly, or a single piece of text may contain contrasting sentiments about different aspects <ref type="bibr" target="#b2">[3]</ref>. ACSA provides detailed insights on various categories of products/services, helping in product development, marketing, and customer service. It automatizes the analysis of a large volume of customer feedbacks, identifying areas for improvement or differentiation, and informing strategic decisions and market responses.</p><p>In this paper we present PyACSA, a new ACSA tool that is based on a feature of PyABSA, used for the more complex task of Aspect Category Opinion Sentiment (ACOS) <ref type="bibr" target="#b3">[4]</ref>. We developed a new dataset for the ACSA task on the Beauty and Personal Care domain. We created a framework with various functions: from converting datasets across various formats (SemEval2014 1 , SemEval2015 2 , SemEval2016 3 , JSON), to manual and semi-automatic data annotation for this task, up to visualizing prediction data on graphs by calculating a sentiment index for each category of the domain. In addition, the PyACSA tool is experimented on several datasets available in the literature, demonstrating excellent results, comparing with ACSA-Gen <ref type="bibr" target="#b4">[5]</ref>, a state-of-the-art tool for ACSA. two elements(category and sentiment polarity). In the table below we report an example that shows the extraction of all elements from a sentence. As mentioned in the introduction, we developed the PyACSA tool by specializing a new feature of PyABSA <ref type="bibr" target="#b3">[4]</ref>, which was designed for the more complex task of Aspect Category Opinion Sentiment, to the Aspect-Category Sentiment Analysis. It is important to highlight the fact that the task is carried with the same format as SemEval 2016 task 5, subtask 2 <ref type="bibr" target="#b7">[8]</ref>, which means at text-level. At text-level, given a customer review about a target entity, the goal is to identify a set of {category, polarity} pairs that summarize the opinions expressed in the review. The polarities can be "positive", "negative", "neutral" (when a category is mentioned without any sentiment), or "conflict" (when the same category is expressed in a positive and a negative inside the same text, but neither of the two is dominant).</p><p>The PyACSA tool uses the T5 (Text-to-Text Transfer Transformer) <ref type="bibr" target="#b8">[9]</ref> model which is based on a standard encoder-decoder Transformer <ref type="bibr" target="#b9">[10]</ref> capturing long-range dependencies in text. The T5 model, if trained on a vast corpus of text data, converts various natural language processing (NLP) tasks into a text-to-text format, achieving state-of-the-art performance on many benchmarks covering summarization, question answering, text classification, and more. The pre-trained model used in this work is flan-t5-xl <ref type="bibr" target="#b10">[11]</ref>, an extension of the original T5 model with improved performance.</p><p>The PyABSA tool, which is implemented in PyTorch <ref type="bibr" target="#b11">[12]</ref>, is built using this pre-trained model and fine-tuned on the dataset using several instructions, one for each element. We developed PyACSA by modifying the PyABSA code so that only one extraction is performed containing both categories and sentiment polarities. This method takes an input text, categories, and polarities, and returns a string that combines the instructions with the provided input. This formatted string is then fed to the model for training or prediction. A specific module facilitates the creation of a dataset for this task by preparing the data in the required format, creating the training and test datasets, and reading JSON data from a file. With this approach, we aim to simplify the implementation of the ACSA framework that exploits several utilities to facilitate this task. The tool's integration with PyABSA provides a robust and flexible system for our specific needs, allowing us to streamline the data preparation and model training processes exploring the application of a text-to-text model in a task where it is not typically used.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.">ACSA Utilities</head><p>In this section, we present the framework we developed for using and evaluating the PyACSA tool. We developed a web application in Python using the Flask package to promote the use of this task, facilitate user interaction with the model, and make the entire process more accessible and efficient. The framework contains key components such as data format transformation modules, for converting various input formats into the JSON format required by PyACSA), and utilities for manual and semiautomatic data annotation, allowing users to annotate data directly within the web app or use the model's predictions to assist in the annotation process. This dual approach enhances flexibility and efficiency, catering to different user needs and preferences, while leveraging the model for annotations improves accuracy and accelerates the workflow.</p><p>Furthermore, the framework contains a module that generates a bar chart along with a sentiment index (see Figure <ref type="figure" target="#fig_2">3</ref>), which evaluates the categories of the reviews entered into the system. This feature provides valuable insights into the sentiment distribution across different aspects of our domain, aiding in the analysis and interpretation of the data. We release our code at https://github.com/lorisdiquilio/ACSA-Framework-using-T2T-model.</p><p>In the following paragraphs, we describe the components of the framework in detail, highlighting their functionalities and expected benefits.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.1.">Data Converter</head><p>The data converter module provides various converters designed to facilitate the transformation of data across various formats, ensuring compatibility and ease of use for subsequent tasks. The module is composed of several functions written in Python to transform data across tasks, sub-tasks, and formats. Among the main converters we developed, there are those for conversion of data from SemEval 14, 15 and 16 (XML) format to the JSON format of PyACSA, which have been used to evaluate PyACSA on the SemEval datasets.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.2.">Data Annotation</head><p>This module allows the user to annotate the dataset in the JSON format used by our tool (shown in Listing 1). Data can be annotated both manually and in a semi-automatic way.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.2.1.">Manual annotation</head><p>This module allows to load a training file, in JSON format, that contains annotated text. After loading the file, it is possible to annotate each review, by adding new annotations selecting the categories and polarities, or by deleting annotations, if needed. Additionally, the module allows to add categories that are not already known to the system, offering flexibility and adaptability to various annotation needs. When the annotation process is finished, it is possible to export the annotations in JSON format.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.2.2.">Semi-automatic annotation</head><p>This module is designed to leverage the initial trained model for further improvements. Once a trained model is available, through this module we can use the model itself to suggest annotations on new data, making the dataset creation process faster and more efficient.</p><p>Similar to the manual annotation module, upon accessing this tab, the reviews and model predictions will be displayed, with the initial prediction next to the text. Multiple predictions for the same sentence will appear below the text. After reviewing the model's predictions, necessary corrections can be made and saved back into the original training file (JSON). This feature was used to annotate more data and improve model performance during experiments. In Figure <ref type="figure" target="#fig_1">2</ref> we see that the model predicts two correct tuples. It is easy to understand that in this way the annotation process becomes more efficient.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.3.">Report Generation</head><p>This module can be used to generate a report providing a final assessment of the reviews for a product.</p><p>We compute a sentiment index, which measures the overall quality of the product through all its reviews within the relevant domain. In this case, the domain represents a Skin Care, Body Care and Hair Care products. The sentiment index is computed based on the aggregated sentiment scores across different categories, offering a comprehensive evaluation of the product's performance. The sentiment index is computed as follows:</p><formula xml:id="formula_0">Sentiment Index = Positive − Negative Positive + Negative (1)</formula><p>where Positive and Negative denote the number of positive and negative reviews, respectively. Note that the sentiment index value ranges from −1 to 1.</p><p>In Figure <ref type="figure" target="#fig_2">3</ref>, we show the bar chart generated by the module, which displays the review polarities for each category of the selected product. This bar chart provides a visual representation of how users perceive different aspects of the product, with each bar indicating the level of positive or negative sentiment associated with a specific category. Figure <ref type="figure" target="#fig_3">4</ref> presents the overall sentiment index and the sentiment index calculated for each category. The overall sentiment index gives a comprehensive view of the general perception of the product, while the category-specific sentiment indices allow us to delve deeper into particular aspects. This dual representation helps in understanding not only the general acceptance of the product but also the specific areas where it excels or falls short.</p><p>From the results, we can evaluate the aspects that perform positively and negatively for this specific product. For instance, we can conclude that this product is generally well-received because it is effective, has a pleasant texture and smell, and is conveniently sized for travel. However, there are some drawbacks noted by users, such as the small quantity (for some), poor delivery and packaging, and the high cost of the product.  </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.">Experimental evaluation</head><p>We have built an ACSA dataset based on Beauty and Personal Care reviews. The dataset was annotated manually and semi-automatically by one of the authors and is available at the repository.</p><p>In addition to the new dataset, we used some publicly available datasets<ref type="foot" target="#foot_0">4</ref> : SemEval Laptop and Restaurant, and MAMS (Multi-Aspect Multi-Sentiment). We used the Data conversion module of our framework to convert datasets in XML format to the JSON format used by PyACSA. In Table <ref type="table" target="#tab_1">2</ref> we show some statistics about the datasets. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.1.">Experimental settings and results</head><p>In the experiment, the following settings are used: pre-trained flan-t5-xl with 3 billion parameters, learning rate of 5 × 10 −<ref type="foot" target="#foot_1">5</ref> . Epochs and batch size are set to 10 and 6, respectively. A regularization parameter (𝐿 2 Regularization) 5 that helps prevent overfitting by reducing model weights during training is set to 0.01. The Warmup-Ratio (the ratio of total training steps used for a linear warmup from 0 to learning_rate) is set to 0.1. The PyACSA tool is compared with ACSA-Gen <ref type="bibr" target="#b4">[5]</ref>, one of the state-of-the-art tools in this field, as stated in the survey <ref type="bibr" target="#b5">[6]</ref>, which also leverages the power of a pre-trained generative model. Note that the model used by PyACSA is more powerful than that used by ACSA-Gen, which is a BART-large-MNLI <ref type="foot" target="#foot_2">6</ref> , the best BART model for the classification task. The latter was used with the template "The sentiment polarity of &lt;given_category&gt; is &lt;polarity_type&gt;" for each label. The configurations for BART-large-MNLI are: learning rate of 4 × 10 −5 , 15 epochs, and batch size of 16.</p><p>The results reported in the table are based on the most common metrics: Precision, Recall, and Micro-F1 Score. The results show that PyACSA performs better than ACSA-Gen in all the considered datasets, likely due to the power of the pre-trained model, as the BART model has a smaller size (approximately 406 million parameters) compared to the T5-XL (3 billion). We notice that PyACSA performs quite well in the ACSA task at the text level, except on the Laptop dataset, probably because of the high number of categories it contains.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5.">Conclusion and future works</head><p>We adapted an existing tool from the literature to transition from an Aspect-Category-Opinion-Sentiment (ACOS) task to an Aspect-Category Sentiment Analysis (ACSA) task. We developed a comprehensive web application featuring various sections, including the transformation of different data formats for various Aspect-Based Sentiment Analysis tasks, using the model for data annotation, and creating a sentiment index to evaluate what are the performances in terms of topics in the reviews analyzed, entered into the tool. Additionally, we released a new dataset, which will be made available in the literature for future research in this domain, and we evaluate the tool by comparing it with a state-of-the-art tool. Our primary goal is to promote the use of this task by simplifying the entire underlying process, thereby facilitating broader adoption and application in the research community. However, there are some limitations to our current approach. One significant challenge is that loading the model is resource-intensive and requires a dedicated space for that. Additionally, the interface is currently tailored to the specific domain mentioned in the paper (Beauty dataset), and future work should aim to expand its applicability across several domains to ensure broader usability. While the web application is continuously improving, future efforts will focus on implementing new features, including sections for model uploads. For future work, we want to evaluate the web app interface developed in this study with human participants to ensure that the interface is intuitive and user-friendly, highlighting possible areas of improvement.</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0"><head>Figure 1 :</head><label>1</label><figDesc>Figure 1: Manual annotation module</figDesc><graphic coords="3,150.98,388.94,293.33,169.95" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_1"><head>Figure 2 :</head><label>2</label><figDesc>Figure 2: Semi-automatic annotation module. In this case the model predicts two tuples: {Absorption, Negative} and {Texture/Thickness, Negative} .</figDesc><graphic coords="4,128.41,65.61,338.46,200.11" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_2"><head>Figure 3 :</head><label>3</label><figDesc>Figure 3: Bar chart showing review polarity per category</figDesc><graphic coords="5,72.00,84.65,315.89,179.50" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_3"><head>Figure 4 :</head><label>4</label><figDesc>Figure 4: Sentiment Indexes</figDesc><graphic coords="5,387.89,65.61,135.39,217.59" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head>Table 1</head><label>1</label><figDesc>Example of extraction of all ACOS elements from a sentence.</figDesc><table><row><cell>Text</cell><cell cols="4">Aspect Term Category Opinion Term Sentiment polarity</cell></row><row><cell>'Though the service might be a little slow, the waitresses</cell><cell>'service'</cell><cell>'service'</cell><cell>'a little slow'</cell><cell>'negative'</cell></row><row><cell>are very friendly. '</cell><cell>'waitresses'</cell><cell>'staff'</cell><cell>'very friendly'</cell><cell>'positive'</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_1"><head>Table 2</head><label>2</label><figDesc>Datasets used for the experimental evaluation</figDesc><table><row><cell></cell><cell cols="3">Beauty MAMS Rest 14</cell><cell>Rest 141516</cell><cell cols="2">Rest 16 Laptop</cell></row><row><cell></cell><cell></cell><cell></cell><cell>Hard</cell><cell>Large-Hard</cell><cell></cell><cell></cell></row><row><cell># Train</cell><cell>1932</cell><cell>3549</cell><cell>137</cell><cell>270</cell><cell>335</cell><cell>395</cell></row><row><cell># Test</cell><cell>218</cell><cell>400</cell><cell>25</cell><cell>48</cell><cell>90</cell><cell>80</cell></row><row><cell># Categories</cell><cell>20</cell><cell>8</cell><cell>5</cell><cell>8</cell><cell>12</cell><cell>87</cell></row><row><cell># Positive annotations</cell><cell>1124</cell><cell>2415</cell><cell>146</cell><cell>274</cell><cell>1298</cell><cell>1548</cell></row><row><cell># Negative annotations</cell><cell>877</cell><cell>2606</cell><cell>143</cell><cell>259</cell><cell>411</cell><cell>870</cell></row><row><cell># Neutral annotations</cell><cell>104</cell><cell>3858</cell><cell>59</cell><cell>168</cell><cell>78</cell><cell>154</cell></row><row><cell># Conflict annotations</cell><cell>48</cell><cell>-</cell><cell>-</cell><cell>-</cell><cell>52</cell><cell>55</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_2"><head>Table 3</head><label>3</label><figDesc>Results of the experimental evaluation on different datasets</figDesc><table><row><cell>Tool</cell><cell>Metrics</cell><cell cols="6">Datasets Beauty MAMS Rest14 H Rest141516 H Rest16 Lap16</cell></row><row><cell></cell><cell>P</cell><cell>0.8109</cell><cell>0.7347</cell><cell>0.78</cell><cell>0.7333</cell><cell>0.8272</cell><cell>0.6567</cell></row><row><cell>ACSA-Gen</cell><cell>R</cell><cell>0.7477</cell><cell>0.7469</cell><cell>0.7358</cell><cell>0.7264</cell><cell cols="2">0.6163 0.3229</cell></row><row><cell></cell><cell>F1</cell><cell>0.7780</cell><cell>0.7407</cell><cell>0.7572</cell><cell>0.7298</cell><cell>0.7063</cell><cell>0.4329</cell></row><row><cell></cell><cell>P</cell><cell cols="2">0.8116 0.7741</cell><cell>0.8</cell><cell>0.8333</cell><cell cols="2">0.8316 0.6756</cell></row><row><cell>PyACSA</cell><cell>R</cell><cell cols="2">0.8786 0.7913</cell><cell>0.7547</cell><cell>0.8018</cell><cell cols="2">0.8069 0.3211</cell></row><row><cell></cell><cell>F1</cell><cell cols="2">0.8438 0.7826</cell><cell>0.7766</cell><cell>0.8173</cell><cell cols="2">0.8190 0.4353</cell></row></table></figure>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="4" xml:id="foot_0">https://github.com/l294265421/ACSA/tree/master/datasets</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="5" xml:id="foot_1">https://paperswithcode.com/method/weight-decay</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="6" xml:id="foot_2">https://huggingface.co/facebook/bart-large-mnli</note>
		</body>
		<back>
			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">Preface to the Eighth Workshop on Natural Language for Artificial Intelligence (NL4AI)</title>
		<author>
			<persName><forename type="first">G</forename><surname>Bonetta</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><forename type="middle">D</forename><surname>Hromei</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Siciliani</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">A</forename><surname>Stranisci</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the Eighth Workshop on Natural Language for Artificial Intelligence (NL4AI 2024) co-located with 23th International Conference of the Italian Association for Artificial Intelligence (AI*IA 2024)</title>
				<meeting>the Eighth Workshop on Natural Language for Artificial Intelligence (NL4AI 2024) co-located with 23th International Conference of the Italian Association for Artificial Intelligence (AI*IA 2024)</meeting>
		<imprint>
			<date type="published" when="2024">2024</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">Aspect category sentiment analysis based on prompt-based learning with attention mechanism</title>
		<author>
			<persName><forename type="first">Z</forename><surname>Ping</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Sang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Z</forename><surname>Liu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Zhang</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Neurocomputing</title>
		<imprint>
			<biblScope unit="volume">565</biblScope>
			<biblScope unit="page">126994</biblScope>
			<date type="published" when="2024">2024</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">An improved aspect-category sentiment analysis model for text sentiment analysis based on roberta</title>
		<author>
			<persName><forename type="first">W</forename><surname>Liao</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Zeng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">X</forename><surname>Yin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Wei</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Appl. Intell</title>
		<imprint>
			<biblScope unit="volume">51</biblScope>
			<biblScope unit="page" from="3522" to="3533" />
			<date type="published" when="2021">2021</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<monogr>
		<title/>
		<author>
			<persName><forename type="first">H</forename><surname>Yang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">K</forename><surname>Li</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Pyabsa</forename></persName>
		</author>
		<ptr target="https://github.com/yangheng95/PyABSA" />
		<imprint>
			<date type="published" when="2023">2023</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">Solving aspect category sentiment analysis as a text generation task</title>
		<author>
			<persName><forename type="first">J</forename><surname>Liu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Z</forename><surname>Teng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Cui</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><surname>Liu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Zhang</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">EMNLP (1), Association for Computational Linguistics</title>
				<imprint>
			<date type="published" when="2021">2021</date>
			<biblScope unit="page" from="4406" to="4416" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<monogr>
		<title level="m" type="main">A survey on aspect-based sentiment analysis: Tasks, methods, and challenges</title>
		<author>
			<persName><forename type="first">W</forename><surname>Zhang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">X</forename><surname>Li</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Deng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Bing</surname></persName>
		</author>
		<author>
			<persName><forename type="first">W</forename><surname>Lam</surname></persName>
		</author>
		<idno type="DOI">10.48550/arXiv.2203.01054</idno>
		<imprint>
			<date type="published" when="2022">2022</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<analytic>
		<title level="a" type="main">Evaluating the aspect-category-opinion-sentiment analysis task on a custom dataset (short paper)</title>
		<author>
			<persName><forename type="first">L</forename><forename type="middle">D</forename><surname>Quilio</surname></persName>
		</author>
		<author>
			<persName><forename type="first">F</forename><surname>Fioravanti</surname></persName>
		</author>
		<ptr target=".org" />
	</analytic>
	<monogr>
		<title level="m">NL4AI@AI*IA</title>
		<title level="s">CEUR Workshop Proceedings</title>
		<imprint>
			<publisher>CEUR-WS</publisher>
			<date type="published" when="2023">2023</date>
			<biblScope unit="volume">3551</biblScope>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<monogr>
		<title/>
		<author>
			<persName><forename type="first">Semeval</forename><surname>Semeval</surname></persName>
		</author>
		<ptr target="https://alt.qcri.org/semeval2016/task5/" />
		<imprint>
			<date type="published" when="2016">2016. 2016</date>
			<biblScope unit="volume">5</biblScope>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b8">
	<analytic>
		<title level="a" type="main">Exploring the limits of transfer learning with a unified text-to-text transformer</title>
		<author>
			<persName><forename type="first">C</forename><surname>Raffel</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><surname>Shazeer</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Roberts</surname></persName>
		</author>
		<author>
			<persName><forename type="first">K</forename><surname>Lee</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Narang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Matena</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Zhou</surname></persName>
		</author>
		<author>
			<persName><forename type="first">W</forename><surname>Li</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><forename type="middle">J</forename><surname>Liu</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">J. Mach. Learn. Res</title>
		<imprint>
			<biblScope unit="volume">21</biblScope>
			<biblScope unit="page">67</biblScope>
			<date type="published" when="2020">2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b9">
	<analytic>
		<title level="a" type="main">Attention is all you need</title>
		<author>
			<persName><forename type="first">A</forename><surname>Vaswani</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><surname>Shazeer</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><surname>Parmar</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Uszkoreit</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Jones</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><forename type="middle">N</forename><surname>Gomez</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Kaiser</surname></persName>
		</author>
		<author>
			<persName><forename type="first">I</forename><surname>Polosukhin</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">NIPS</title>
		<imprint>
			<biblScope unit="page" from="5998" to="6008" />
			<date type="published" when="2017">2017</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b10">
	<monogr>
		<title level="m" type="main">Scaling instruction-finetuned language models</title>
		<author>
			<persName><forename type="first">H</forename><forename type="middle">W</forename><surname>Chung</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Hou</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Longpre</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Zoph</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Tay</surname></persName>
		</author>
		<author>
			<persName><forename type="first">W</forename><surname>Fedus</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Li</surname></persName>
		</author>
		<author>
			<persName><forename type="first">X</forename><surname>Wang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Dehghani</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Brahma</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Webson</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><forename type="middle">S</forename><surname>Gu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Z</forename><surname>Dai</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Suzgun</surname></persName>
		</author>
		<author>
			<persName><forename type="first">X</forename><surname>Chen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Chowdhery</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Narang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Mishra</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Yu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">V</forename><forename type="middle">Y</forename><surname>Zhao</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Huang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><forename type="middle">M</forename><surname>Dai</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><surname>Yu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Petrov</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><forename type="middle">H</forename><surname>Chi</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Dean</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Devlin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Roberts</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Zhou</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Q</forename><forename type="middle">V</forename><surname>Le</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Wei</surname></persName>
		</author>
		<idno>CoRR abs/2210.11416</idno>
		<imprint>
			<date type="published" when="2022">2022</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b11">
	<monogr>
		<author>
			<persName><forename type="first">A</forename><surname>Paszke</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Gross</surname></persName>
		</author>
		<author>
			<persName><forename type="first">F</forename><surname>Massa</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Lerer</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Bradbury</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Chanan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><surname>Killeen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Z</forename><surname>Lin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><surname>Gimelshein</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Antiga</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Desmaison</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Köpf</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><forename type="middle">Z</forename><surname>Yang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Z</forename><surname>Devito</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Raison</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Tejani</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Chilamkurthy</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Steiner</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Fang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Bai</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Chintala</surname></persName>
		</author>
		<title level="m">Pytorch: An imperative style, high-performance deep learning library</title>
				<imprint>
			<publisher>NeurIPS</publisher>
			<date type="published" when="2019">2019</date>
			<biblScope unit="page" from="8024" to="8035" />
		</imprint>
	</monogr>
</biblStruct>

				</listBibl>
			</div>
		</back>
	</text>
</TEI>
