Pith. sign in

REVIEW 3 major objections 7 minor 57 references

PRISM: A Framework for Producing Interpretable Political Bias Embeddings with Political-Aware Cross-Encoder

T0 review · 3 major / 7 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read The paper claims that PRISM is the first framework to produce interpretable political bias embeddings, where each dimension is a named controversial topic and each value is the net right-minus-left alignment of an article with…

desk verdict A useful interpretable-bias embedding pipeline with a plausible but under-validated weak-label premise; the headline classification claim is stronger than the evidence. read the letter →

arxiv 2505.24646 v1 pith:23OXFWJV submitted 2025-05-30 cs.CL

classification cs.CL
keywords interpretableembeddingspoliticalbiascross-encodertopicminingweaklabelsdiversifiedretrievalnewsideologymedia
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

PRISM represents a news article's political bias as a sparse vector whose dimensions are automatically mined controversial topics and whose values are net right-minus-left alignment scores. The paper claims this is the first interpretable political bias embedding framework, and that it outperforms state-of-the-art text embedding models on political bias classification while also serving as an effective distance for politically diversified retrieval. The motivation is that ordinary semantic embeddings place two articles about the same event close together even when their ideological stances differ, whereas PRISM separates them by explicitly scoring each article against left and right bias indicators for each mined topic. If the claims hold, news analysis tools could move from opaque black-box bias scores to transparent, per-topic ideological representations.

What carries the argument

The load-bearing object is the political-aware cross-encoder, a neural scorer that takes an article and a bias indicator and returns a score between zero and one. The embedding coordinate for a topic is the difference between the right-indicator score and the left-indicator score, and only the top-m topics selected by an importance score that balances topical relevance with left-right divergence receive nonzero values. The topic dimensions themselves come from k-means clustering of semantically embedded articles, keeping only clusters with high bias dispersion, then having an LLM summarize each cluster into a neutral topic and paired left/right indicators.

What would settle it

Take a set of articles from outlets whose media rating conflicts with expert human ratings of the article's own stance, and check whether PRISM's embedding scores for the relevant topic follow the outlet label rather than the expert label; if they follow the outlet label, the weak-label training signal, not true article ideology, is carrying the result.

Watch

Extended reading notes

Core claim

PRISM discovers controversial topics from weakly labeled news corpora by embedding articles, clustering them, and keeping clusters with high ideological dispersion. An LLM then summarizes each cluster into a neutral topic plus paired left and right bias indicators. A political-aware cross-encoder is trained with weak labels so that an article paired with its own cluster's indicator is scored high only when the article's outlet leans that way; at inference, each embedding coordinate is the difference between the article's alignment with the right indicator and its alignment with the left indicator. The paper reports that these embeddings beat generic and political text embedding baselines on political bias classification, provide a reliable distance metric for diversified retrieval, and yield interpretable per-topic scores.

Load-bearing premise

The load-bearing premise is that a news outlet's bias rating accurately describes the political slant of every individual article from that outlet; if outlet ratings reflect brand or editorial style rather than article-level stance, PRISM's scores encode the label source instead of genuine bias.

Editorial extensions

If this is right

  • Political bias classification can be done with a simple linear classifier on PRISM embeddings and still beat generic and political text embedding models, including on the held-out human-annotated BASIL dataset.
  • Politically diversified retrieval can use PRISM embeddings as a distance metric, improving the diversity-relevance trade-off over retrieval based on semantic embeddings alone.
  • Because topics are mined automatically, re-running PRISM on a new or updated corpus yields new topical dimensions without manual annotation, allowing adaptation to emerging political discourse.
  • The embedding space can be inspected directly: a nonzero value on a topic dimension tells the reader which side of a named controversy the article aligns with, while zero indicates irrelevance or neutrality.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • A natural extension the paper does not pursue is using PRISM's per-topic scores as a stance profile: instead of one overall bias number, each article gets a vector over issues, which could power issue-specific ideological search or tracking.
  • The paper's limitations note that topics are treated as independent axes; in the editor's reading, allowing overlapping or hierarchical topic dimensions could improve performance on corpora with correlated issues.
  • Because the bias indicators are written by an LLM, the wording of those indicators is a hidden sensitivity: reformulating a left or right indicator could shift embedding values, suggesting a prompt-robustness test as a next step.
  • If the weak-label assumption survives article-level human validation, the same pipeline should transfer to non-U.S. contexts by re-mining with local outlet ratings, a direction the paper notes but does not evaluate.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 7 minor

Summary. The paper introduces PRISM, a two-stage framework for generating interpretable political bias embeddings for news articles. In the first stage, PRISM mines controversial topics and their left/right bias indicators from weakly labeled news corpora by clustering articles, measuring bias dispersion of clusters, and using an LLM to summarize each controversial cluster and generate side-specific indicators. In the second stage, a cross-encoder is trained on weak labels derived from the same media bias ratings to score article-indicator alignment, and each article's embedding is a sparse vector over the top-m mined topics with values given by the difference between right- and left-alignment scores, so positive values indicate right-leaning bias and negative values left-leaning bias. The authors evaluate PRISM on NewsSpectrum and BigNews for political bias classification and politically diversified retrieval, report a within-dataset accuracy of 86.1% on NewsSpectrum, and include a case study and an out-of-distribution experiment on the human-annotated BASIL dataset.

Significance. If the results hold, PRISM would be a practically useful contribution: it produces sparse, interpretable embeddings whose dimensions are named controversial topics, it is fully automatic and does not require fine-grained manual annotations, and the code is released. The paper also includes useful elements: a parameter study for k and m, an external BASIL evaluation, and an unusually candid Limitations section that concedes the framework may conflate topic and stance. However, the headline claim that PRISM 'outperforms state-of-the-art text embedding models in political bias classification' is not yet established, because the weak-label premise, the held-out protocol, and the baseline comparisons all need additional validation before the central claim is secure.

major comments (3)
  1. [Section 3.3 / Section 4.3 / Limitations] The load-bearing weak-label assumption is not validated at article level. The cross-encoder is trained so that (a, b_left) receives label 1 only when the article's outlet is rated left, and likewise for right, using AllSides outlet ratings that also define the classification target; the within-dataset accuracy therefore partly measures how well the model recovers its own training signal. The paper's own Limitations section concedes that 'the current framework may conflate topic and stance,' and the only article-level human-labeled check, BASIL in Table 4, shows PRISM at 40.0% accuracy and 37.3 F1-macro, far below the 86.1% within-dataset result and only about 5 points above the best generic embedding. Please add a direct article-level validation of the weak labels, or otherwise temper the claims about article-level bias classification.
  2. [Section 4.3 / Appendix B] The held-out protocol is not clearly disjoint from PRISM's training data. The main text states that SVM training is performed on a held-out dataset distinct from PRISM's training data, but Appendix B describes randomly sampling 10,000 articles from NewsSpectrum and 100,000 from BigNews without stating whether those articles were excluded from the topic-mining stage and the cross-encoder training stage. Because PRISM's cross-encoder is trained on the same NewsSpectrum and BigNews corpora, any overlap would inflate the reported classification numbers. In addition, Appendix B states that 'All results are reported from a single experimental run,' with no error bars, multiple seeds, or significance tests. Please specify the exact split, verify that no evaluation article contributes to PRISM training, and report variance across several runs.
  3. [Section 4.3 / Table 1] The baseline comparison is not apples-to-apples. PRISM is trained on large in-domain weakly labeled data, while the generic embedding baselines (AnglE, Instructor, InBedder, CQG-MBQA) are evaluated as off-the-shelf feature extractors, and POLITICS is pre-trained on BigNews, the same dataset on which it is tested. The claim that PRISM 'outperforms state-of-the-art text embedding models' therefore conflates the method's architecture with the advantage of training on the evaluation corpus and its labels. A control in which a generic encoder is fine-tuned on the same weak labels, or an otherwise matched training protocol, would be needed to attribute the gains to PRISM's design.
minor comments (7)
  1. [Table 1] The column header 'NewsSepctrum' is a typo for 'NewsSpectrum'.
  2. [Figure 5 caption] The caption reads 'F1-marco' and should read 'F1-macro'.
  3. [Section 3.3 / Equation (3)] The symbol x is used for the article embedding in Equation (1) and then re-used for the final embedding in Equation (3); please use distinct notation for the article text, the article's semantic embedding, and the final bias embedding.
  4. [Section 3.3 / Weak Label Generation] The description of negative sampling says 'some random out-of-cluster topics' are used, but the number of negatives per article and the sampling procedure are not specified; please provide these details.
  5. [Section 4.5 / Figure 4] The case study does not state which outlets the three articles come from, so the reader cannot judge whether the displayed scores are representative or cherry-picked; please provide source information.
  6. [Appendix D / Table 4] The BASIL experiment lacks essential details: the number of BASIL articles, the train/test split, whether the results are averaged over multiple seeds, and how the logistic regression was trained; without these, the out-of-distribution conclusion is hard to assess.
  7. [Appendix D / Table 6] The zero-shot LLM baselines in Table 6 are reported without any prompting details or decoding settings; please document the prompts and inference configuration for reproducibility.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: PRISM's classification results are supervised evaluations on held-out data and an external human-annotated benchmark, not derivations from the target labels.

full rationale

The potential circularity concern is that PRISM's cross-encoder is trained with weak labels derived from AllSides media-outlet ratings, which are also the target of the downstream political-bias classification. However, the paper does not claim to derive bias from first principles; it trains a supervised model and evaluates generalization. Section 4.3 states that the SVM classifier is trained on a held-out dataset distinct from PRISM's training data and evaluated on a separate test set, so the reported 86.1% NewsSpectrum accuracy and the BigNews results measure held-out prediction rather than recovery of the training labels by construction. The final embedding value in Eq. (3) is e_i = s^r_i - s^l_i, computed from a learned function f_theta; nothing in the equations forces e_i to equal the weak label for a held-out article. Appendix D provides an external check on BASIL, a human-annotated dataset disjoint from PRISM's training data, where PRISM outperforms the baselines, further supporting that the framework has independent predictive content. The Limitations section concedes that the framework 'may conflate topic and stance' and that evaluation relies on AllSides ratings; this is a validity and generalizability caveat about weak-label quality, not a circularity in the derivation. Self-citations to DiversiNews (Sun et al., 2024) and DkMIPS (Huang et al., 2024) are used as evaluation protocols and retrieval algorithms, not as unverified premises of the embedding construction. No equation in the paper reduces to its own input, and no fitted parameter is renamed as a prediction. No significant circularity found.

Assumptions & free parameters 5 free parameters · 5 assumptions · 0 invented entities

The central claim rests on a supervised pipeline whose target labels come from outlet-level media bias ratings. The main free parameters are the clustering and threshold settings, which are chosen without a transparent validation protocol. No new physical or conceptual entity is introduced, but the LLM-generated bias indicators act as unvalidated scaffolding for the interpretability claim.

free parameters (5)
  • number of clusters k = 3000
    K-means cluster count used to mine topics; parameter study on NewsSpectrum shows peak around k=1000, yet final setting is 3000, so the choice is not uniquely determined by the study.
  • bias dispersion threshold tau = 1.0 for NewsSpectrum, 0.5 for BigNews
    Threshold for declaring a cluster controversial; calibrated per dataset according to label granularity, no validation protocol shown.
  • minimum cluster size p = 50
    Minimum cluster membership for a controversial topic; set uniformly, no sensitivity analysis.
  • topic retrieval weight lambda = 0.8
    Weights topic relevance vs bias divergence in Equation 1; fixed, no sensitivity analysis reported.
  • top-m topic dimensions = not stated for final experiments
    Number of retrieved topics per article in Equation 3; parameter study varies m from 1 to 15 but the final value used in Tables 1 and 4 is not reported.
assumptions (5)
  • domain assumption AllSides media outlet ratings are valid article-level political bias labels
    The weak-label generation in Section 3.3 and the dispersion metric in Section 3.2 treat outlet-level ratings as ground truth for individual articles; no article-level validation is provided.
  • domain assumption K-means clusters correspond to coherent political topics
    Topic mining relies on clusters of semantic embeddings being interpretable topics; no external measure of cluster coherence is given.
  • ad hoc to paper GPT-4o-mini generated bias indicators accurately represent left and right framing
    The cross-encoder is trained to align articles with these LLM-generated indicators, so the framework inherits any systematic errors or omissions in the indicators. The prompt in Appendix A is included, but outputs are not validated against human framing annotations.
  • domain assumption Inner product similarity in the semantic embedding space measures topic relevance for Equation 1
    Important Topic Retrieval uses cosine-like dot products between article, topic, and indicator embeddings; this assumes the base encoder organizes political topics by semantic proximity.
  • domain assumption MSE-trained cross-encoder scores generalize from weak labels to unseen articles
    The entire embedding generation relies on f_theta generalizing beyond the weak-label training pairs; this is partially supported by BASIL but not by internal validation.

how reviews work

0 comments
Cite this review

Pith. "Pith review of PRISM: A Framework for Producing Interpretable Political Bias Embeddings with Political-Aware Cross-Encoder." pith.science (2026). https://pith.science/paper/23OXFWJV

@misc{pith2026250524646,
  author       = {Pith},
  title        = {Pith review of: PRISM: A Framework for Producing Interpretable Political Bias Embeddings with Political-Aware Cross-Encoder},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/23OXFWJV}},
  note         = {Machine review of arXiv:2505.24646}
}
read the original abstract

Semantic Text Embedding is a fundamental NLP task that encodes textual content into vector representations, where proximity in the embedding space reflects semantic similarity. While existing embedding models excel at capturing general meaning, they often overlook ideological nuances, limiting their effectiveness in tasks that require an understanding of political bias. To address this gap, we introduce PRISM, the first framework designed to Produce inteRpretable polItical biaS eMbeddings. PRISM operates in two key stages: (1) Controversial Topic Bias Indicator Mining, which systematically extracts fine-grained political topics and their corresponding bias indicators from weakly labeled news data, and (2) Cross-Encoder Political Bias Embedding, which assigns structured bias scores to news articles based on their alignment with these indicators. This approach ensures that embeddings are explicitly tied to bias-revealing dimensions, enhancing both interpretability and predictive power. Through extensive experiments on two large-scale datasets, we demonstrate that PRISM outperforms state-of-the-art text embedding models in political bias classification while offering highly interpretable representations that facilitate diversified retrieval and ideological analysis. The source code is available at https://github.com/dukesun99/ACL-PRISM.

Figures

Figures reproduced from arXiv: 2505.24646 by the authors.

Figure 1
Figure 1. Semantic Text Embedding vs. Political Bias [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Overview of the PRISM framework. These topics form the embedding dimensions of political bias, while the bias indicators serve as reference points for encoding political bias. Generating Interpretable Bias Embeddings. To quantify an article’s stance on each topic, PRISM employs a political-aware cross-encoder model, which assigns a score between 0 and 1 based on how strongly the article aligns with a given bias indi… view at source ↗
Figure 3
Figure 3. Diversified retrieval results. Experimental Setup. We adopt the retrieval proto￾col and evaluation metrics from DiversiNews (Sun et al., 2024) and employ the Diversity-aware k￾Maximum Inner Product Search (DkMIPS) algo￾rithm (Huang et al., 2024) to enhance political di￾versity in retrieval results. Our implementation incorporates two distinct embedding spaces: • AnglE Embeddings: Used to measure query￾document relev… view at source ↗
Figures from the paper (2 more)
Figure 4
Figure 4. Figure 4: Case study on three news articles with different political bias. [PITH_FULL_IMAGE:figures/full_fig_p008_4.png]
Figure 5
Figure 5. Figure 5: Effect of key parameters on classification performance (F1-marco) on NewsSpectrum: (a) number of [PITH_FULL_IMAGE:figures/full_fig_p009_5.png]

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

57 extracted references · 48 canonical work pages

  1. [1]

    Charu C Aggarwal and ChengXiang Zhai. 2012. https://link.springer.com/chapter/10.1007/978-1-4614-3223-4_4 A survey of text clustering algorithms . Mining Text Data, pages 77--128

  2. [2]

    Eneko Agirre, Daniel Cer, Mona Diab, and Aitor Gonzalez-Agirre. 2012. https://aclanthology.org/S12-1051.pdf SemEval-2012 task 6: A pilot on semantic textual similarity . In *SEM 2012: The First Joint Conference on Lexical and Computational Semantics--Volume 1: Proceedings of the main conference and the shared task, and Volume 2: Proceedings of the Sixth I...

  3. [3]

    Eneko Agirre, Daniel Cer, Mona Diab, Aitor Gonzalez-Agirre, and Weiwei Guo. 2013. https://aclanthology.org/S13-1004.pdf *SEM 2013 shared task: Semantic Textual Similarity . In Second Joint Conference on Lexical and Computational Semantics (* SEM ), Volume 1: Proceedings of the Main Conference and the Shared Task: Semantic Textual Similarity , pages 32--43

  4. [4]

    Peter Anderson, Mano Vikash Janardhanan, Jason He, Wei Cheng, and Charlie Flanagan. 2024. https://aclanthology.org/2024.emnlp-industry.26/ Greenback bears and fiscal hawks: Finance is a jungle and text embeddings must adapt . In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 362--370

  5. [5]

    Ramy Baly, Giovanni Da San Martino, James Glass, and Preslav Nakov. 2020 a . https://aclanthology.org/2020.emnlp-main.404/ We can detect your bias: Predicting the political ideology of news articles . In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 4982--4991

  6. [6]

    Ramy Baly, Georgi Karadzhov, Jisun An, Haewoon Kwak, Yoan Dinkov, Ahmed Ali, James Glass, and Preslav Nakov. 2020 b . https://aclanthology.org/2020.acl-main.308/ What was written vs. who read it: News media profiling using text analysis and social media context . In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics (A...

  7. [7]

    Iz Beltagy, Kyle Lo, and Arman Cohan. 2019. https://aclanthology.org/D19-1371/ SciBERT: A Pretrained Language Model for Scientific Text . In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP), pages 3615--3620

  8. [8]

    Vinamra Benara, Chandan Singh, John X Morris, Richard J Antonello, Ion Stoica, Alexander G Huth, and Jianfeng Gao. 2024. https://nips.cc/virtual/2024/poster/93720 Crafting interpretable embeddings for language neuroscience by asking llms questions . In Proceedings of the 38th International Conference on Neural Information Processing Systems (NeurIPS), pag...

Show all 57 references
  1. [9]

    Qingyu Chen, Yifan Peng, and Zhiyong Lu. 2019. https://www.computer.org/csdl/proceedings-article/ichi/2019/08904728/1f8N795Otnq BioSentVec: creating sentence embeddings for biomedical texts . In 2019 IEEE International Conference on Healthcare Informatics (ICHI), pages 1--5

  2. [10]

    Wei Chen, Xiao Zhang, Tengjiao Wang, Bishan Yang, and Yi Li. 2017. https://www.ijcai.org/proceedings/2017/510 Opinion-aware knowledge graph for political ideology detection . In Proceedings of the 26th International Joint Conference on Artificial Intelligence (IJCAI), pages 3647--3653

  3. [11]

    Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. 2019. https://aclanthology.org/N19-1423.pdf BERT : Pre-training of deep bidirectional transformers for language understanding . In Proceedings of the 2019 Conference of the North A merican Chapter of the Associa...

  4. [12]

    Tim Draws, Nava Tintarev, and Ujwal Gadiraju. 2021. https://www.kdd.org/exploration_files/7_specialsectionBIAS_7.pdf Assessing viewpoint diversity in search results using ranking fairness metrics . ACM SIGKDD Explorations Newsletter, 23(1):50--58

  5. [13]

    Lisa Fan, Marshall White, Eva Sharma, Ruisi Su, Prafulla Kumar Choubey, Ruihong Huang, and Lu Wang. 2019. https://aclanthology.org/D19-1664/ In plain sight: Media bias through the lens of factual reporting . In Proceedings of the 2019 Conference on Empirical Methods in Natural...

  6. [14]

    Tianyu Gao, Xingcheng Yao, and Danqi Chen. 2021. https://aclanthology.org/2021.emnlp-main.552/ SimCSE : Simple contrastive learning of sentence embeddings . In Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 6894--6910

  7. [15]

    Pengcheng He, Jianfeng Gao, and Weizhu Chen. 2023. https://openreview.net/forum?id=sE7-XhLxHA DeBERTaV3 : Improving DeBERTa using ELECTRA-Style pre-training with gradient-disentangled embedding sharing . In The Eleventh International Conference on Learning Representations (ICLR)

  8. [16]

    Valentin Hofmann, Xiaowen Dong, Janet Pierrehumbert, and Hinrich Sch \"u tze. 2022. https://aclanthology.org/2022.findings-naacl.41/ Modeling ideological salience and framing in polarized online groups with graph neural networks and structured sparsity . In Findings of the Ass...

  9. [17]

    Jiwoo Hong, Yejin Cho, Jiyoung Han, Jaemin Jung, and James Thorne. 2023. https://aclanthology.org/2023.findings-emnlp.377.pdf Disentangling structure and style: Political bias detection in news by inducing document hierarchy . In Findings of the Association for Computational L...

  10. [18]

    Qiang Huang, Yanhao Wang, Yiqun Sun, and Anthony KH Tung. 2024. https://arxiv.org/abs/2402.13858 Diversity-aware k -maximum inner product search revisited . arXiv preprint arXiv:2402.13858

  11. [19]

    Mohit Iyyer, Peter Enns, Jordan Boyd-Graber, and Philip Resnik. 2014. https://aclanthology.org/P14-1105.pdf Political ideology detection using recursive neural networks . In Proceedings of the 52nd Annual Meeting of the Association for Computational Linguistics (ACL), pages 1113--1122

  12. [20]

    Vladimir Karpukhin, Barlas Oguz, Sewon Min, Patrick Lewis, Ledell Wu, Sergey Edunov, Danqi Chen, and Wen-tau Yih. 2020. https://aclanthology.org/2020.emnlp-main.550/ Dense passage retrieval for open-domain question answering . In Proceedings of the 2020 Conference on Empirical...

  13. [21]

    Michelle YoungJin Kim and Kristen Johnson. 2022. https://aclanthology.org/2022.coling-1.245/ CLoSE : Contrastive learning of subframe embeddings for political bias classification of news media . In Proceedings of the 29th International Conference on Computational Linguistics (...

  14. [22]

    Vivek Kulkarni, Junting Ye, Steven Skiena, and William Yang Wang. 2018. https://aclanthology.org/D18-1388/ Multi-view models for political ideology detection of news articles . In Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing (EMNLP), p...

  15. [23]

    Jinhyuk Lee, Wonjin Yoon, Sungdong Kim, Donghyeon Kim, Sunkyu Kim, Chan Ho So, and Jaewoo Kang. 2020. https://academic.oup.com/bioinformatics/article/36/4/1234/5566506?login=false BioBERT : a pre-trained biomedical language representation model for biomedical text mining . Bio...

  16. [24]

    Seonghyeon Lee, Dongha Lee, Seongbo Jang, and Hwanjo Yu. 2022. https://aclanthology.org/2022.acl-long.412/ Toward interpretable semantic textual similarity via optimal transport-based contrastive sentence learning . In Proceedings of the 60th Annual Meeting of the Association ...

  17. [25]

    Xianming Li and Jing Li. 2024. https://aclanthology.org/2024.acl-long.101/ AoE : Angle-optimized embeddings for semantic textual similarity . In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (ACL), pages 1825--1839

  18. [26]

    Luyang Lin, Lingzhi Wang, Xiaoyan Zhao, Jing Li, and Kam-Fai Wong. 2024. https://aclanthology.org/2024.findings-eacl.70/ IndiVec: An Exploration of Leveraging Large Language Models for Media Bias Detection with Fine-Grained Bias Indicators . In Findings of the Association for ...

  19. [27]

    Songtao Liu, Ziling Luo, Minghua Xu, Lixiao Wei, Ziyao Wei, Han Yu, Wei Xiang, and Bang Wang. 2023. https://aclanthology.org/2023.emnlp-main.256/ Ideology takes multiple looks: A high-quality dataset for multifaceted ideology detection . In Proceedings of the 2023 Conference o...

  20. [28]

    Songtao Liu, Bang Wang, Wei Xiang, Han Xu, and Minghua Xu. 2024. https://aclanthology.org/2024.findings-acl.172/ Encoding hierarchical schema via concept flow for multifaceted ideology detection . In Findings of the Association for Computational Linguistics: ACL 2024, pages 2930--2942

  21. [29]

    Yinhan Liu, Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy, Mike Lewis, Luke Zettlemoyer, and Veselin Stoyanov. 2019. https://arxiv.org/abs/1907.11692 RoBERTa: A Robustly Optimized BERT Pretraining Approach . arXiv preprint arXiv:1907.11692

  22. [30]

    Yujian Liu, Xinliang Frederick Zhang, David Wegsman, Nicholas Beauchamp, and Lu Wang. 2022. https://aclanthology.org/2022.findings-naacl.101/ POLITICS: Pretraining with Same-story Article Comparison for Ideology Prediction and Stance Detection . In Findings of the Association ...

  23. [31]

    Manuel Martinez, Sonja Schmer-Galunder, Zoey Liu, Sangpil Youm, Chathuri Jayaweera, and Bonnie Dorr. 2024. https://aclanthology.org/2024.sicon-1.7/ Balancing transparency and accuracy: A comparative analysis of rule-based and deep learning models in political bias classificati...

  24. [32]

    Denis McInerney, Geoffrey Young, Jan-Willem van de Meent, and Byron C Wallace. 2023. https://aclanthology.org/2023.findings-emnlp.568/ Chill: Zero-shot custom interpretable feature extraction from clinical notes with large language models . In Findings of the Association for C...

  25. [33]

    Tomas Mikolov, Ilya Sutskever, Kai Chen, Greg Corrado, and Jeffrey Dean. 2013. https://dl.acm.org/doi/abs/10.5555/2999792.2999959 Distributed representations of words and phrases and their compositionality . In Proceedings of the 27th International Conference on Neural Informa...

  26. [34]

    Niklas Muennighoff, Nouamane Tazi, Loic Magne, and Nils Reimers. 2023. https://aclanthology.org/2023.eacl-main.148/ MTEB: Massive Text Embedding Benchmark . In Proceedings of the 17th Conference of the European Chapter of the Association for Computational Linguistics (EACL), p...

  27. [35]

    Preslav Nakov, Jisun An, Haewoon Kwak, Muhammad Arslan Manzoor, Zain Mujahid, and Husrev Sencar. 2024. https://aclanthology.org/2024.findings-acl.944/ A survey on predicting the factuality and the bias of news media . In Findings of the Association for Computational Linguistic...

  28. [36]

    Rodrigo Nogueira and Kyunghyun Cho. 2019. https://arxiv.org/abs/1901.04085 Passage Re-ranking with BERT . arXiv preprint arXiv:1901.04085

  29. [37]

    Juri Opitz and Anette Frank. 2022. https://aclanthology.org/2022.aacl-main.48/ SBERT studies Meaning Representations: Decomposing Sentence Embeddings into Explainable Semantic Features . In Proceedings of the 2nd Conference of the Asia-Pacific Chapter of the Association for Co...

  30. [38]

    Julia Otmakhova, Shima Khanehzar, and Lea Frermann. 2024. https://aclanthology.org/2024.acl-long.822/ Media Framing: A Typology and Survey of Computational Approaches Across Disciplines . In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistic...

  31. [39]

    Ajay Patel, Delip Rao, Ansh Kothary, Kathleen Mckeown, and Chris Callison-Burch. 2023. https://aclanthology.org/2023.findings-emnlp.1020/ Learning interpretable style embeddings via prompting llms . In Findings of the Association for Computational Linguistics: EMNLP 2023, page...

  32. [40]

    Letian Peng, Yuwei Zhang, Zilong Wang, Jayanth Srinivasa, Gaowen Liu, Zihan Wang, and Jingbo Shang. 2024. https://aclanthology.org/2024.acl-long.27/ Answer is all you need: Instruction-following text embedding via answering the question . In Proceedings of the 62nd Annual Meet...

  33. [41]

    Jeffrey Pennington, Richard Socher, and Christopher D Manning. 2014. https://aclanthology.org/D14-1162.pdf GloVe: Global Vectors for Word Representation . In Proceedings of the 2014 conference on empirical methods in natural language processing (EMNLP), pages 1532--1543

  34. [42]

    Nils Reimers and Iryna Gurevych. 2019. https://aclanthology.org/D19-1410/ Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks . In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Na...

  35. [43]

    Francisco-Javier Rodrigo-Gin \'e s, Jorge Carrillo-de Albornoz, and Laura Plaza. 2024. https://www.sciencedirect.com/science/article/pii/S0957417423021437 A systematic review on media bias detection: What is media bias, how it is expressed, and how to detect it . Expert System...

  36. [44]

    Adi Simhi and Shaul Markovitch. 2023. https://aclanthology.org/2023.emnlp-main.106/ Interpreting embedding spaces by conceptualization . In Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 1704--1719

  37. [45]

    Barea Sinno, Bernardo Oviedo, Katherine Atwell, Malihe Alikhani, and Junyi Jessy Li. 2022. https://aclanthology.org/2022.naacl-main.17/ Political ideology and polarization: A multi-dimensional approach . In Proceedings of the 2022 Conference of the North American Chapter of th...

  38. [46]

    Timo Spinde, Manuel Plank, Jan-David Krieger, Terry Ruas, Bela Gipp, and Akiko Aizawa. 2021. https://aclanthology.org/2021.findings-emnlp.101/ Neural media bias detection using distant supervision with babe-bias annotations by experts . In Findings of the Association for Compu...

  39. [47]

    Hongjin Su, Weijia Shi, Jungo Kasai, Yizhong Wang, Yushi Hu, Mari Ostendorf, Wen-tau Yih, Noah A Smith, Luke Zettlemoyer, and Tao Yu. 2023. https://aclanthology.org/2023.findings-acl.71/ One embedder, any task: Instruction-finetuned text embeddings . In Findings of the Associa...

  40. [48]

    Yiqun Sun, Qiang Huang, Yixuan Tang, Anthony K. H. Tung, and Jun Yu. 2025. https://openreview.net/forum?id=23uY3FpQxc&noteId=rpzPsaCpdb A general framework for producing interpretable semantic text embeddings . In The Thirteenth International Conference on Learning Representat...

  41. [49]

    Yiqun Sun, Qiang Huang, Yanhao Wang, and Anthony K. H. Tung. 2024. https://www.vldb.org/pvldb/vol17/p4277-huang.pdf DiversiNews: Enriching News Consumption with Relevant Yet Diverse News Articles Retrieval . Proceedings of the VLDB Endowment, 17(12):4277--4280

  42. [50]

    Maia Sutter, Antoine Gourru, Amine Trabelsi, and Christine Largeron. 2024. https://aclanthology.org/2024.eacl-long.107/ Unsupervised stance detection for social media discussions: A generic baseline . In Proceedings of the 18th Conference of the European Chapter of the Associa...

  43. [51]

    Yixuan Tang and Yi Yang. 2024. https://arxiv.org/abs/2409.18511 Do we need domain-specific embedding models? an empirical investigation . arXiv preprint arXiv:2409.18511

  44. [52]

    Nandan Thakur, Nils Reimers, Andreas R \"u ckl \'e , Abhishek Srivastava, and Iryna Gurevych. 2021. https://datasets-benchmarks-proceedings.neurips.cc/paper_files/paper/2021/file/65b9eea6e1cc6bb9f0cd2a47751a186f-Paper-round2.pdf BEIR: A Heterogeneous Benchmark for Zero-shot Ev...

  45. [53]

    Sanne Vrijenhoek, Mesut Kaya, Nadia Metoui, Judith M \"o ller, Daan Odijk, and Natali Helberger. 2021. https://dl.acm.org/doi/abs/10.1145/3406522.3446019 Recommenders with a mission: assessing diversity in news recommendations . In Proceedings of the 2021 Conference on Human I...

  46. [54]

    Chuhan Wu, Fangzhao Wu, Tao Qi, and Yongfeng Huang. 2020. https://aclanthology.org/2020.aacl-main.6/ SentiRec: Sentiment Diversity-aware Neural News Recommendation . In Proceedings of the 1st conference of the Asia-Pacific chapter of the association for computational linguisti...

  47. [55]

    Wenjie Zhuo, Yifan Sun, Xiaohan Wang, Linchao Zhu, and Yi Yang. 2023. https://aclanthology.org/2023.acl-long.677/ Whitenedcse: Whitening-based contrastive learning of sentence embeddings . In Proceedings of the 61st Annual Meeting of the Association for Computational Linguisti...

  48. [56]

    online" 'onlinestring :=

    ENTRY address archivePrefix author booktitle chapter edition editor eid eprint eprinttype howpublished institution journal key month note number organization pages publisher school series title type volume year doi pubmed url lastchecked label extra.label sort.label short.list...

  49. [57]

    write newline

    " write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...

Pith tools

Reviewed August 7, 2026 · model on record in the stance chip above.