Views
No views yet
TRACE: Toulmin-based Reasoning Assessment through Constructive Elements for LLM CoT Evaluation
microsoft/deberta-v3-base1from transformers import pipeline
2
3clf = pipeline(
4 "text-classification",
5 model="hyyangkisti/TRACE-DeBERTa-v3-base",
6 top_k=None, # return all label scores
7)
8
9clf("Therefore, I conclude that the hypothesis is correct.")
10# [[{'label': 'Claim', 'score': 0.95}, {'label': 'Qualifier', 'score': 0.82}, ...]]1@misc{kim2026tracetoulminbasedreasoningassessment,
2 title={TRACE: Toulmin-based Reasoning Assessment through Constructive Elements for LLM CoT Evaluation},
3 author={Yundong Kim and Heyoung Yang},
4 year={2026},
5 eprint={2605.29656},
6 archivePrefix={arXiv},
7 primaryClass={cs.AI},
8 url={https://arxiv.org/abs/2605.29656},
9}