<?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">Team Aditya at EXIST 2024 -Detecting Sexism in Multilingual Tweets using Contrastive Learning Approach Notebook for the EXIST Lab at CLEF 2024</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Aditya</forename><surname>Shah</surname></persName>
							<email>aditya02shah@gmail.com</email>
							<affiliation key="aff0">
								<orgName type="institution">Pune Institute Of Computer Technology</orgName>
								<address>
									<settlement>Pune</settlement>
									<country key="IN">India</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Aditya</forename><surname>Gokhale</surname></persName>
							<email>adityangokhale@gmail.com</email>
							<affiliation key="aff1">
								<orgName type="institution">Pune Institute Of Computer Technology</orgName>
								<address>
									<settlement>Pune</settlement>
									<country key="IN">India</country>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">Team Aditya at EXIST 2024 -Detecting Sexism in Multilingual Tweets using Contrastive Learning Approach Notebook for the EXIST Lab at CLEF 2024</title>
					</analytic>
					<monogr>
						<idno type="ISSN">1613-0073</idno>
					</monogr>
					<idno type="MD5">CBD613F33D590D49A3D9AFCAACEA730A</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2025-04-23T18:03+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>Sexism</term>
					<term>Disrespectful and hateful conduct</term>
					<term>Large language models</term>
				</keywords>
			</textClass>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>Due to the growing impact of social media, the necessity for automated mechanisms that can identify sexism and other forms of disrespectful and hateful conduct is rising, aiming to create a more inclusive and respectful digital space. However, it poses significant challenges due to the variety of hate categories and the complexity of interpreting the author's intent, particularly under the multilingual learning framework. This paper describes Team Aditya's participation in the EXIST (sEXism Identification in Social neTworks) Lab at CLEF 2024 . The proposed system makes use of large language models (i.e., Bertweet, mBERT and XLM-RoBERTa) for identifying sexism in English and Spanish language. This work describes our participation in EXIST task 1. Considering a hard evaluation, we obtained F1 score of 0.7691 using best epoch trained with XLM-Roberta. We are ranked 14 th in the given task.</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>Sexism is prejudice or discrimination based on one's sex or gender, often targeting women due to their gender. This harmful mindset causes inequality, limits opportunities, and reinforces oppressive power dynamics, limiting progress toward a fairer society.</p><p>The rise of social media platforms such as Twitter and Facebook has led to a significant change in communication methods. Identifying and reducing hate speech on these platforms can be a daunting task, due to large volumes of data generated. This requires using automated techniques and advanced technologies to efficiently process and classify the content.</p><p>The EXIST 2024 <ref type="bibr" target="#b0">[1]</ref>[2] shared task is focused on detecting sexism, which ranges from blatant misogyny to more subtle, implicit forms of sexist behavior. This task differentiates itself from other related tasks on sexism detection by encompassing not only posts that are explicitly identified as sexist but also posts that document reported incidents of sexism.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.">Dataset Details</head><p>The dataset provided by the Exist2024 initiative consists of about 7K tweets, equally split between Spanish and English language. To mitigate label bias, organisers have considered two different social and demographic parameters: gender (MALE/FEMALE) and age (18-22 y.o./23-45 y.o./+46 y.o). The dataset was split into train, dev, and test sets, roughly distributed as 70%, 10%, and 20%, respectively, for both languages.</p><p>The labels for the tweets in Subtask 1 were categorized as "YES" or "NO" to indicate whether they conveyed a sexist meaning. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.">System Description</head><p>To derive the definitive hard label, we utilize the annotations by multiple annotators and apply majority voting. Only if 3 or more of the 6 annotators unanimously agree to a label YES, then the label is set to YES. Prior to training the model, preprocessing steps were carried out to remove any emoji's, URLs and mentions from the samples. This was done to remove any undue bias.</p><p>We conducted experiments with various models and found XLM-R to be the most effective, particularly due to its strong performance on multilingual data, as shown in Table <ref type="table" target="#tab_2">2</ref>. We finetune XLM-Roberta Large, a multilingual version of Roberta, trained on 2.5TB of filtered CommonCrawl data. This allows us to handle both English and Spanish samples by utilizing a single model.</p><p>The model was trained using contrastive learning, enabling it to differentiate between samples effectively. It learns an embedding space where similar pairs are positioned in close proximity, while dissimilar pairs are distinctly separated.</p><p>To improve the representation of each example in a batch we created label-aware embeddings by prefixing the text with its corresponding label <ref type="bibr" target="#b2">[3]</ref>. A contrastive loss function was then used to align the text features closer to the representations of their correct labels, to improve classification capabilities of the system.</p><p>We utilized three datasets during the finetuning process: The training dataset was used to learn an embedding space using contrastive learning. The validation dataset was used to retain the most effective checkpoint and the test dataset was used to evaluate performance on unseen data.</p><p>We submitted the following systems for evaluation, with each system being trained with the following hyperparameters:</p><p>• Batch size: 16 • Learning rate: 1e-6 • Dropout: 0.35 These hyperparameters were chosen using the Optuna library. We selected the hyperparameters with the best performance on the validation set, after running 50 trials with varying configurations. These optimal hyperparameters help improve performance and reliability.</p><p>1. ADITYA1: The model was trained for 30 epochs, leveraging the combined train and dev datasets.</p><p>The optimal epoch was subsequently saved based on the system's performance on the test set.</p><p>The saved model was used to make predictions on the unseen test set.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.">ADITYA2:</head><p>The model was trained for 30 epochs on the train set. The optimal epoch was subsequently saved based on the system's performance on the test set. The saved model was used to make predictions on the unseen test set.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.">ADITYA3:</head><p>The model was trained for 12 epochs on the combined train and dev datasets. This model was used to make predictions on the unseen test set.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.">Results</head><p>For the exist-Task1 we utilized three systems as described in Section 3. The evaluation metric used for these systems was the ICM Metric. The ICM metric <ref type="bibr" target="#b3">[4]</ref> is a similarity function that generalizes Pointwise Mutual Information (PMI) to compute the similarity between a model's output and the ground truth categories. To calculate the normalized ICM, the "Minority class" baseline (that classifies all instances as the minority class) is considered the lowest score (i.e., 0) and the "Gold standard" is considered the highest score (i.e., 1). Additionally, the models of sexism identification provided two types of outputs, "Hard" labels that classify samples into sexist or not-sexist and "Soft" labels that specify a value between 0 and 1 in order to measure "the degree of sexism" involved in the sample. These labels were used to evaluate the models across three schemes, described as follows:</p><p>• Hard-hard evaluation: the ICM similarity between the hard system output and hard ground truth • Soft-soft evaluation: the ICM similarity between the soft system output and the soft ground truth All three of our submitted systems generated Hard Labels, which were subsequently utilized for the Hard-hard evaluation scheme. A summary of our experiments is presented in Table <ref type="table">3</ref>.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Table 3</head><p>Results for the hard-hard evaluation for Task 1</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Run</head><p>Rank ICM-Hard ICM-Hard Norm F1_YES </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5.">Related Works</head><p>The rise of social media has led to an increase in sexist content in society, necessitating the de-velopment of automated systems to detect and counteract sexism. However, the discrepancy in the composition of the tweets and the multilingual nature of the dataset cause problems . To address these problems, we used pre-processing to improve the effectiveness of our system. To solve the sexism identification challenge, contrastive learning with RoBERTa language model <ref type="bibr" target="#b4">[5]</ref> has been used. Previous research has shown that deep learning algorithms, such as those used in <ref type="bibr" target="#b5">[6]</ref>, can outperform machine learning models for sexism detection in Spanish datasets collected from Twitter. Other studies, such as <ref type="bibr" target="#b6">[7]</ref> and <ref type="bibr" target="#b7">[8]</ref>, have applied multilingual transformer models, including multilingual BERT and XLM-R, to detect sexism in multiple languages. Meanwhile, <ref type="bibr" target="#b8">[9]</ref> has used pre-trained transformers for sexism detection in low-resource languages such as Romanian, and <ref type="bibr" target="#b9">[10]</ref> has employed ensemble models for multilingual classification. Despite these efforts, there is still limited exploration of modeling and analyzing sexism in Spanish and English datasets, highlighting the need for further research in this area. There has been relatively limited research on modelling and analyzing sexism in datasets that contain both Spanish and English language content.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="6.">Conclusion and Future Scope</head><p>This paper presents the participation of team Aditya in the Task1 of the EXIST2024 <ref type="bibr" target="#b1">[2]</ref> lab at CLEF, which focuses on sexism identification. We investigated a contrastive learning based approach for fine-grained analysis. The use of contrastive learning improved the classification capabilities of our models.</p><p>Throughout our experimentation, we evaluated various models, including BerTweet, mBERT and T5. However, XLM-Roberta Large consistently demonstrated superior results compared to its counterparts and the best performance was obtained with its help.</p><p>There is tremendous scope for advancements and progress in this field. In future works, we would like to refine and enhance our approach with different contrastive learning strategies, to improve the model's ability to distinguish between different classes. This approach can be also used in multiclass classification and multilabel classification problems. Large Language Models trained specifically on Spanish text could also be utilized to further improve performance.</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head>Table 1</head><label>1</label><figDesc>Distribution of majority vote per language combining the Train and Dev datasets</figDesc><table /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_1"><head>Majority Vote English Spanish</head><label></label><figDesc></figDesc><table><row><cell>Sexist</cell><cell>47.1%</cell><cell>55.7%</cell></row><row><cell>Non-Sexist</cell><cell>52.9%</cell><cell>44.3%</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_2"><head>Table 2</head><label>2</label><figDesc>Evaluating Performance of Different Models on the Dev Test</figDesc><table><row><cell>Model</cell><cell>F1</cell></row><row><cell>BerTweet</cell><cell>0.7858</cell></row><row><cell>RoBERTa</cell><cell>0.7463</cell></row><row><cell cols="2">XLM-R-Large 0.7961</cell></row><row><cell>UML-T5</cell><cell>0.7683</cell></row><row><cell>mBert</cell><cell>0.7432</cell></row></table></figure>
		</body>
		<back>
			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">Overview of EXIST 2024 -Learning with Disagreement for Sexism Identification and Characterization in Social Networks and Memes</title>
		<author>
			<persName><forename type="first">L</forename><surname>Plaza</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Carrillo-De-Albornoz</surname></persName>
		</author>
		<author>
			<persName><forename type="first">V</forename><surname>Ruiz</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Maeso</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Chulvi</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Rosso</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Amigó</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Gonzalo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Morante</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Spina</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Experimental IR Meets Multilinguality, Multimodality, and Interaction. Proceedings of the Fifteenth International Conference of the CLEF Association</title>
				<meeting><address><addrLine>CLEF</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2024">2024. 2024</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">Overview of EXIST 2024 -Learning with Disagreement for Sexism Identification and Characterization in Social Networks and Memes (Extended Overview)</title>
		<author>
			<persName><forename type="first">L</forename><surname>Plaza</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Carrillo-De-Albornoz</surname></persName>
		</author>
		<author>
			<persName><forename type="first">V</forename><surname>Ruiz</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Maeso</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Chulvi</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Rosso</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Amigó</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Gonzalo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Morante</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Spina</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Working Notes of CLEF 2024 -Conference and Labs of the Evaluation Forum</title>
				<editor>
			<persName><forename type="first">G</forename><surname>Faggioli</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">N</forename><surname>Ferro</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">P</forename><surname>Galuščáková</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">A</forename><forename type="middle">G S</forename><surname>Herrera</surname></persName>
		</editor>
		<imprint>
			<date type="published" when="2024">2024</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<monogr>
		<title level="m" type="main">Dual contrastive learning: Text classification via label-aware data augmentation</title>
		<author>
			<persName><forename type="first">Q</forename><surname>Chen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Zhang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Zheng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Mao</surname></persName>
		</author>
		<ptr target="https://arxiv.org/abs/2201.08702.arXiv:2201.08702" />
		<imprint>
			<date type="published" when="2022">2022</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">Evaluating extreme hierarchical multi-label classification</title>
		<author>
			<persName><forename type="first">E</forename><surname>Amigo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Delgado</surname></persName>
		</author>
		<idno type="DOI">10.18653/v1/2022.acl-long.399</idno>
		<ptr target="https://aclanthology.org/2022.acl-long.399.doi:10.18653/v1/2022.acl-long.399" />
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics</title>
				<editor>
			<persName><forename type="first">S</forename><surname>Muresan</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">P</forename><surname>Nakov</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">A</forename><surname>Villavicencio</surname></persName>
		</editor>
		<meeting>the 60th Annual Meeting of the Association for Computational Linguistics<address><addrLine>Dublin, Ireland</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2022">2022</date>
			<biblScope unit="volume">1</biblScope>
			<biblScope unit="page" from="5809" to="5819" />
		</imprint>
	</monogr>
	<note>: Long Papers), Association for Computational Linguistics</note>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">Multilingual sexism identification using contrastive learning</title>
		<author>
			<persName><forename type="first">J</forename><surname>Angel</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Aroyehun</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Gelbukh</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="s">Working Notes of CLEF</title>
		<imprint>
			<date type="published" when="2023">2023</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<analytic>
		<title level="a" type="main">Automatic classification of sexism in social networks: An empirical study on twitter data</title>
		<author>
			<persName><forename type="first">F</forename><surname>Rodríguez-Sánchez</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Carrillo-De Albornoz</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Plaza</surname></persName>
		</author>
		<idno type="DOI">10.1109/ACCESS.2020.3042604</idno>
	</analytic>
	<monogr>
		<title level="j">IEEE Access</title>
		<imprint>
			<biblScope unit="volume">8</biblScope>
			<biblScope unit="page" from="219563" to="219576" />
			<date type="published" when="2020">2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<monogr>
		<author>
			<persName><forename type="first">M</forename><surname>Schütz</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Boeck</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Liakhovets</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Slijepčević</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Kirchknopf</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Hecht</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Bogensperger</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Schlarb</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Schindler</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Zeppelzauer</surname></persName>
		</author>
		<idno type="arXiv">arXiv:2106.04908</idno>
		<title level="m">Automatic sexism detection with multilingual transformer models</title>
				<imprint>
			<date type="published" when="2021">2021</date>
		</imprint>
	</monogr>
	<note type="report_type">arXiv preprint</note>
</biblStruct>

<biblStruct xml:id="b7">
	<analytic>
		<title level="a" type="main">Sutnlp at semeval-2023 task 10: Rlat-transformer for explainable online sexism detection</title>
		<author>
			<persName><forename type="first">H</forename><forename type="middle">H</forename><surname>Hemati</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><forename type="middle">H</forename><surname>Alavian</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><surname>Beigy</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><surname>Sameti</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 17th International Workshop on Semantic Evaluation</title>
				<meeting>the 17th International Workshop on Semantic Evaluation<address><addrLine>SemEval-</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2023">2023. 2023</date>
			<biblScope unit="page" from="347" to="356" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b8">
	<analytic>
		<title level="a" type="main">Users hate blondes: Detecting sexism in user comments on online Romanian news</title>
		<author>
			<persName><forename type="first">A</forename><surname>Moldovan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">K</forename><surname>Csürös</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>-M. Bucur</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Bercuci</surname></persName>
		</author>
		<idno type="DOI">10.18653/v1/2022.woah-1.21</idno>
		<ptr target="https://aclanthology.org/2022.woah-1.21.doi:10.18653/v1/2022.woah-1.21" />
	</analytic>
	<monogr>
		<title level="m">Proceedings of the Sixth Workshop on Online Abuse and Harms (WOAH), Association for Computational Linguistics</title>
				<editor>
			<persName><forename type="first">K</forename><surname>Narang</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">A</forename><surname>Mostafazadeh</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">L</forename><surname>Davani</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">B</forename><surname>Mathias</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">Z</forename><surname>Vidgen</surname></persName>
		</editor>
		<editor>
			<persName><surname>Talat</surname></persName>
		</editor>
		<meeting>the Sixth Workshop on Online Abuse and Harms (WOAH), Association for Computational Linguistics<address><addrLine>Seattle, Washington (Hybrid</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2022">2022</date>
			<biblScope unit="page" from="230" to="230" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b9">
	<monogr>
		<author>
			<persName><forename type="first">A</forename><forename type="middle">F M</forename><surname>De Paula</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><forename type="middle">F</forename><surname>Da Silva</surname></persName>
		</author>
		<author>
			<persName><forename type="first">I</forename><forename type="middle">B</forename><surname>Schlicht</surname></persName>
		</author>
		<idno type="arXiv">arXiv:2111.04551</idno>
		<title level="m">Sexism prediction in spanish and english tweets using monolingual and multilingual bert and ensemble models</title>
				<imprint>
			<date type="published" when="2021">2021</date>
		</imprint>
	</monogr>
</biblStruct>

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