Pith. sign in

REVIEW 3 major objections 4 minor 2 cited by

Embracing Imperfection: Simulating Students with Diverse Cognitive Levels Using LLM-based Agents

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

Pith's one-line read The paper claims that letting an LLM simulate a student from an explicit knowledge-graph 'cognitive prototype' of that student's concept mastery, then refining the generated solution until it matches the predicted behaviour, roughly…

desk verdict Solid student-simulation pipeline with a new dataset, but the missing chronology in the 40/10 split and an overclaimed abstract keep the headline numbers from being trustworthy. read the letter →

arxiv 2505.19997 v2 pith:VL7UUFTN submitted 2025-05-26 cs.LG cs.CLcs.CY

classification cs.LGcs.CLcs.CY
keywords studentsimulationlargelanguagemodelscognitiveprototypeknowledgegraphbehaviorpredictionbeamsearchself-refinementLLM-basedagentsprogrammingeducation
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

Large language models default to giving perfect answers, so when asked to play the role of a student they overestimate ability and miss the natural mistakes that make simulations believable. The paper claims that a training-free pipeline corrects this bias: first build an explicit 'cognitive prototype' for each student from forty past learning records, as a natural-language knowledge graph whose nodes are concepts and whose edges are typed prerequisite-style relations, labelled with how well the student masters each concept. Then, for each new task, map the prototype onto the task's concepts to predict the student's behaviour, and finally generate a solution consistent with that prediction, refining it with beam search until a value model scores it aligned. The paper validates this on a new dataset of 100 students and 5,000 Python records, reporting roughly a doubling of behaviour-prediction accuracy (0.94 versus 0.47 with GPT-4o on the 15-student subset) and consistently higher realism scores than input-output, chain-of-thought, and ability-level baselines. If the claim holds, researchers get a cheap way to test tutoring strategies against realistic, error-prone simulated students instead of idealized answers.

What carries the argument

The carrier of the argument is the cognitive prototype: a natural-language knowledge graph built per student, whose nodes are knowledge concepts extracted from past learning records, whose edges are four typed relationships ('Prerequisite_of', 'Used_for', 'Hyponym_of', 'Part_of'), and whose per-concept cognitive-state libraries record whether each encounter of a concept was mastered ('Good') or produced a mistake ('Bad'), before aggregating into a global cognitive state per concept. Stage one extracts a high-level task description with a model $\pi_{\mathrm{desc}}$, extracts multi-level concepts with $\pi_{\mathrm{node}}$, infers edges with $\pi_{\mathrm{edge}}$ (resolving conflicting edge types by majority vote in an edge library), classifies local mastery with $\pi_{\mathrm{local}}$, and summarises the global state with $\pi_{\mathrm{global}}$. Stage two scores the new task's concepts against the graph nodes, selects the top-$p$ concepts, retrieves the past record containing the most of them, and has $\pi_{\mathrm{pred}}$ predict the student's behaviour from the concept states and that record. Stage three is the beam-search self-refinement of Algorithm 1, where a refinement model $\pi_{\mathrm{refine}}$ proposes candidate solutions, a value model $\pi_{\mathrm{value}}$ scores each candidate's alignment with the predicted behaviour on a 0-1 scale, and the best candidate seeds the next iteration. The prototype does the epistemic work of grounding prediction in concept-level mastery rather than surface similarity, while the refinement loop does the generative work of turning a behaviour description into code that embodies the predicted mistakes.

What would settle it

Recover the timestamps in Student_100 and check whether each student's 10 simulation tasks are strictly later than their 40 past tasks, then rerun the pipeline on a deliberately shuffled random split. If shuffled accuracy stays near 0.94, the prototype is reading contemporaneous behaviour and the predictive simulation claim collapses; if a strict chronological holdout from a later week preserves the gain, the claim survives.

Watch

Extended reading notes

Core claim

The paper's central claim is that LLM-based agents fail to simulate diverse students not from a lack of reasoning power but from a response-generation bias: models trained as helpful assistants produce overly advanced answers, making weak students look strong. The proposed remedy is a cognitive prototype: for each student, a knowledge graph built iteratively from their past records, where nodes are extracted knowledge concepts (from basic syntax to algorithm design), edges are one of four typed relationships ('Prerequisite_of', 'Used_for', 'Hyponym_of', 'Part_of'), and each concept accumulates a local Good or Bad mastery signal across records, later summarised into a global cognitive state. Rather than retrieving a similar past task by surface text, the framework maps the prototype onto the new task at the concept level, then predicts the student's expected behaviour from the matched concepts and the most relevant past record. A beam-search self-refinement loop converts that prediction into a simulated solution: candidate solutions are sampled, scored for alignment with the predicted behaviour, the best is kept, and the process repeats up to $L=3$ iterations or until the score exceeds $\delta=0.9$. The paper reports the framework consistently outperforming all baselines across four LLMs, with the largest gains for the strongest model (GPT-4o reaching 0.94 behaviour-prediction accuracy and a 3.65 realism score on the 15-student subset), and reports that the gains transfer to Java and C++.

Load-bearing premise

The load-bearing premise is that each student's cognitive state stays stable over the week the records come from, and specifically that the 40 records used to build the prototype are chronologically before the 10 tasks being simulated; if the split is not chronological, the framework interpolates behaviour rather than predicting it, and the reported gains could be inflated.

Editorial extensions

If this is right

  • Behaviour-prediction accuracy rises steadily as past records grow from 10 to 40 (0.53 to 0.94 with GPT-4o) and shows no sign of saturating at 40, so the framework should gain from longer learning histories.
  • Stronger LLMs benefit more from self-refinement, because refinement quality depends on the model's ability to evaluate its own output; the framework's advantage should widen as base models improve.
  • Self-refinement is only as good as its behaviour description: with low-quality predictions it underperforms plain input-output or chain-of-thought prompting, so the two stages cannot be decoupled.
  • Simulating high-ability students is systematically easier than simulating low-ability ones, because producing realistic, individualised mistakes is harder than producing correct code.
  • The same pipeline transfers from Python to Java and C++ groups built from the CodeNet metadata, supporting generality across programming languages and platforms.

Reading between the lines

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

  • The 100% improvement rests on the 40-versus-10 record split being chronological, which the paper does not state; a strict later-week holdout for the same students is the natural first test of whether the prototype predicts rather than interpolates.
  • A stress test the authors did not run: measure whether accuracy decays as the gap between prototype and target task grows, which would bound how long a cognitive prototype stays valid.
  • The prototype's interpretability is an asset the paper underuses: a concept-level map of mastered and shaky concepts could serve directly as a tutor-facing diagnostic, not only as input to a simulator.
  • If the framework generalises beyond programming, mathematics is the likely first home, since its concept-prerequisite structure is explicit; the authors list but do not test this.
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 / 4 minor

Summary. The paper proposes a training-free framework for simulating students with different cognitive levels using LLM-based agents. The method constructs a per-student cognitive prototype from past learning records by extracting knowledge concepts, relationships, and local/global mastery states into a knowledge graph. For a new task, the prototype is mapped to relevant concepts and a past record, and a behavior prediction is generated; a beam-search self-refinement loop then produces a student solution consistent with that prediction. The authors introduce the Student_100 dataset of 100 students and 5,000 Python programming records, and report end-to-end comparisons against retrieval/level baselines for behavior prediction and IO/CoT baselines for solution simulation, together with ablations and a human evaluation. They conclude that the method consistently outperforms baselines, claiming a 100% improvement in simulation accuracy and realism.

Significance. If the reported gains are robust, the framework is a valuable step toward interpretable, training-free student simulation: it introduces a new dataset, an explicit knowledge-graph representation of student cognition, and a refinement procedure that can reproduce realistic errors. The core evaluation is not circular, because Acc, Con1, and Con2 compare against human-annotated ground truth rather than the generator's own outputs, and the cognitive prototype is built from records that are intended to be separate from the simulated tasks. The paper also provides ablations and a human evaluation. However, the significance is currently tempered by the temporal-split ambiguity and by the fact that the headline numbers are tied to a small subset whose hyperparameters were selected on the same data.

major comments (3)
  1. [Section 3] Section 3 states that for each student sequence "we select 40 records as 'past learning records' and 10 as 'simulation records'" but does not state that the 10 simulation records are chronologically later than the 40 past records. Since the entire framework is framed as prediction from past records to new tasks (Section 4.1: P = {P_i}_{1≤i≤M} and tasks t_j for M+1 ≤ j ≤ M+N), a random split within the one-week window would allow the cognitive prototype to be built from records that are contemporaneous with, or later than, the simulated tasks, turning the reported prediction gains into interpolation over near-contemporaneous tasks. Please report the timestamp ordering, re-run the main comparison with a strictly chronological 40/10 split, or explicitly reframe the evaluation as interpolation rather than prediction.
  2. [Abstract; Section 5.2; Table 5] The abstract's claim of "100% improvement in simulation accuracy and realism" is supported only by the GPT-4o accuracy comparison on Student_15 in Table 2 (0.94 vs. 0.47). On the full Student_100 set, the corresponding GPT-4o gain is 0.89 vs. 0.55 (about 62%), and other models show substantially smaller gains; the Con2 gains are far below 100% in both tables. Please qualify the headline claim and report the percentage gains separately for each model and evaluation set.
  3. [Section 5.1; Table 1; Figure 4] The hyperparameters p, L, B, and δ in Table 1 are selected via the analysis in Section 5.3 and Figure 4 on the same Student_15 subset that is then used for the headline end-to-end results in Table 2. This creates a selection effect: the reported GPT-4o accuracy of 0.94 and Con2 of 3.65 are evaluated on the data used for parameter choice. Please fix the hyperparameters before looking at Student_15, or report end-to-end results on a separate held-out set, or demonstrate that the ranking is stable across reasonable hyperparameter choices.
minor comments (4)
  1. [Section 5.1] In the baseline list, "Level+Similarity, which incorporates Random and Similarity" appears to contain a typo; it should read "Level and Similarity."
  2. [Algorithm 1] Line 5 of Algorithm 1 has an extra closing parenthesis in "πvalue(tj, ˆbj, Pˆj, ˆsl,k j ))"; please fix the notation.
  3. [Figure 2; Appendix B] Figure 2 reports cognitive scores without error bars or information about run-to-run variability; Appendix B explains the scoring procedure but not how stable the scores are across repeated LLM evaluations.
  4. [Section 3; Appendix A] The dataset description mentions ten annotators but does not report inter-annotator agreement; adding a reliability statistic such as Cohen's kappa would strengthen the claim that the ground-truth behavior annotations are consistent.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the cognitive prototype is built only from past records, and the reported predictions are evaluated against external human-annotated ground truth; the temporal-split ambiguity is a validity risk, not a circular reduction.

full rationale

The paper's derivation chain is self-contained. The cognitive prototype is constructed exclusively from the 40 'past learning records' (Section 3; Eqs. 1-4), behavior prediction applies this prototype to new tasks (Eq. 5), and solution simulation is refined against the predicted behavior (Algorithm 1). Evaluation metrics Acc, Con1, and Con2 compare against human-annotated ground-truth behavior and solutions, not against the model's own predicted outputs; Con1/Con2 use o1-mini as an independent judge, and the human evaluation in Table 4 corroborates the LLM-based scores. The method's outputs are therefore not definitionally equal to its inputs. The only load-bearing concern is that Section 3 does not explicitly state that the 10 'simulation records' are chronologically later than the 40 'past learning records'; if the split were random within the one-week window, the reported 'prediction' gains could reflect interpolation or leakage rather than forecasting. This is a data-validity risk, not a circular step, because the paper's equations never include the simulation records as inputs and the text describes the data as 'sequential task-solving records.' There is also minor reliance on LLM-based scoring for the cognitive scores in Figure 2, but this does not make the central comparison circular: the same o1-mini judge is used for all compared methods, and human evaluation provides external confirmation. Self-citations appear mainly in related work and in the knowledge-tracing distinction discussion; they are not used to justify the prototype construction or to forbid alternative approaches.

Assumptions & free parameters 6 free parameters · 7 assumptions · 0 invented entities

The framework rests on several domain assumptions: cognitive stability over a week, a chronological split between past and simulation records, the reliability of LLM-based concept extraction and cognitive state assessment, the relevance of concept overlap for retrieval, the usefulness of the value model in self-refinement, and the validity of LLM-based evaluation. These are not derived from first principles and are not independently verified in the paper.

free parameters (6)
  • p (number of relevant concepts) = 5
    Top-p relevant knowledge concepts selected for behavior prediction; chosen by hand, not justified by theory.
  • L (max refinement iterations) = 3
    Grid-searched on the Student_15 subset; performance stabilizes after 3.
  • B (beam search size) = 2
    Grid-searched on the Student_15 subset; gains beyond 2 are negligible.
  • δ (alignment threshold) = 0.9
    Hand-chosen stopping threshold for self-refinement.
  • M and N (record split) = 40 past, 10 simulation
    Dataset split chosen by the authors; not derived.
  • Concept extraction limit = 15 per task
    Cap on number of concepts per task to keep relation extraction efficient (Appendix C.3).
assumptions (7)
  • domain assumption Student cognitive state remains stable over a one-week period
    States in Section 3: 'student simulation relies on the premise that a student's cognitive state remains stable over a short period.'
  • domain assumption The 10 simulation records are new tasks drawn after the 40 past records in time
    Required for a genuine predictive setting; not explicitly stated as chronological selection in Section 3.
  • domain assumption LLMs can reliably extract knowledge concepts, relationships, and concept-level mastery from task statements and code
    Core of Section 4.2; no verification against a gold concept graph.
  • domain assumption Concept overlap between a new task and past records is a valid relevance signal for behavior prediction
    Section 4.3 uses top-p concept similarity to select the reference record.
  • domain assumption The value model πvalue can score alignment of a candidate solution with the predicted behavior
    Algorithm 1 relies on πvalue scores to select refinements; no evidence of calibration.
  • domain assumption o1-mini LLM judgments (Con1, Con2) are valid proxies for human evaluation of simulation quality
    Con1 and Con2 are computed by o1-mini; human evaluation only covers a single comparison of solution simulation.
  • domain assumption Human-annotated behavior descriptions are accurate and consistent across annotators
    The dataset relies on 10 annotators; no inter-annotator agreement is reported.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Embracing Imperfection: Simulating Students with Diverse Cognitive Levels Using LLM-based Agents." pith.science (2026). https://pith.science/paper/VL7UUFTN

@misc{pith2026250519997,
  author       = {Pith},
  title        = {Pith review of: Embracing Imperfection: Simulating Students with Diverse Cognitive Levels Using LLM-based Agents},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/VL7UUFTN}},
  note         = {Machine review of arXiv:2505.19997}
}
abstract

Large language models (LLMs) are revolutionizing education, with LLM-based agents playing a key role in simulating student behavior. A major challenge in student simulation is modeling the diverse learning patterns of students at various cognitive levels. However, current LLMs, typically trained as ``helpful assistants'', target at generating perfect responses. As a result, they struggle to simulate students with diverse cognitive abilities, as they often produce overly advanced answers, missing the natural imperfections that characterize student learning and resulting in unrealistic simulations. To address this issue, we propose a training-free framework for student simulation. We begin by constructing a cognitive prototype for each student using a knowledge graph, which captures their understanding of concepts from past learning records. This prototype is then mapped to new tasks to predict student performance. Next, we simulate student solutions based on these predictions and iteratively refine them using a beam search method to better replicate realistic mistakes. To validate our approach, we construct the \texttt{Student\_100} dataset, consisting of $100$ students working on Python programming and $5,000$ learning records. Experimental results show that our method consistently outperforms baseline models, achieving $100\%$ improvement in simulation accuracy.

Figures

Figures reproduced from arXiv: 2505.19997 by the authors.

Figure 1
Figure 1. Existing LLM-based simulations struggle to [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Cognitive scores of 15 different students. The [PITH_FULL_IMAGE:figures/full_fig_p002_2.png] view at source ↗
Figure 3
Figure 3. In the first stage, we construct a student cognitive prototype by iteratively building a knowledge graph from [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (9 more)
Figure 4
Figure 4. Figure 4: (a) Performance on different past learning [PITH_FULL_IMAGE:figures/full_fig_p008_4.png]
Figure 5
Figure 5. Figure 5: Simulation difficulty varies across students. [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]
Figure 6
Figure 6. Figure 6: Examples of simulated results. Similarity-based retrieval methods rely on superficial task similarities, [PITH_FULL_IMAGE:figures/full_fig_p009_6.png]
Figure 8
Figure 8. Figure 8: The distribution of student cognitive scores in [PITH_FULL_IMAGE:figures/full_fig_p014_8.png]
Figure 9
Figure 9. Figure 9: Details of the naive prompt. for a student, we calculate their average score to represent their cognitive ability. The distribution of these cognitive scores across the dataset is visual￾ized in [PITH_FULL_IMAGE:figures/full_fig_p014_9.png]
Figure 10
Figure 10. Figure 10: A detailed illustration of the edge library [PITH_FULL_IMAGE:figures/full_fig_p015_10.png]
Figure 12
Figure 12. Figure 12: Details of the Input-Output (IO) prompt. [PITH_FULL_IMAGE:figures/full_fig_p016_12.png]
Figure 14
Figure 14. Figure 14: Details of the prompt for Con1 metric. past learning records is constrained to ensure stabil￾ity in the student’s cognitive state, an assumption critical to the student simulation task. Specifically, only records from a one-week period are consid￾ered, during which a …
Figure 15
Figure 15. Figure 15: Details of the prompt for Con2 metric. AI techniques to ensure responsible and effective communication, making it suitable for both casual and professional use. The tested API version is claude-3-5-sonnet-20241022. GPT-3.5 is an advanced language model developed by Op…

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 2 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. CustomerSim: Benchmarking and Aligning Multimodal Language Models as Retail User Simulators

    cs.CL 2026-05 unverdicted novelty 7.0 of 10

    SalesSim benchmarks MLLMs as retail user simulators, finds gaps in persona adherence and over-persuasion, and introduces UserGRPO RL to raise decision alignment by 13.8%.

  2. Tackling Device Data Distribution Real-time Shift via Prototype-based Parameter Editing

    cs.LG 2025-09 conditional novelty 4.0 of 10

    Persona generates real-time parameter edits for on-device models in the cloud, grouped into prototype models with dynamic assignment, and reports strong accuracy gains over fine-tuning and prior device-cloud methods o...

Reference graph

Works this paper leans on

15 extracted references · 10 canonical work pages · cited by 2 Pith papers

  1. [2]

    The ability to code is a prerequisite of software development

    Given a student’s previous code, you can use the style of their historical code as a reference. Directly output your code. At the end of your code, please include <e> to indicate its completion. -Real Data- Student's Past Code: {eg_code} New Programming Problem: {question} Error Descriptions: {error_desc} Code: Figure 12: Details of the Input-Output (IO) ...

  2. [6]

    In Proceedings of the 32nd ACM In- ternational Conference on Multimedia, MM 2024, Melbourne, VIC, Australia, 28 October 2024 - 1 November 2024, pages 3489–3498

    Semantic alignment for multimodal large lan- guage models. In Proceedings of the 32nd ACM In- ternational Conference on Multimedia, MM 2024, Melbourne, VIC, Australia, 28 October 2024 - 1 November 2024, pages 3489–3498. ACM. Hanyi Xu, Wensheng Gan, Zhenlian Qi, Jiayang Wu, and Philip S. Yu. 2024a. Large language models for education: A survey. CoRR, abs/2...

  3. [7]

    Tree of thoughts: Deliberate problem solving with large language models. In Advances in Neural Information Processing Systems 36: Annual Confer- ence on Neural Information Processing Systems 2023, NeurIPS 2023, New Orleans, LA, USA, December 10 - 16, 2023. Murong Yue, Wijdane Mifdal, Yixuan Zhang, Jennifer Suh, and Ziyu Yao. 2024. Mathvc: An llm-simulated...

  4. [11]

    Based on the provided error descriptions, your code must include and perfectly reproduce these errors

  5. [12]

    Directly output your code

    Given a student’s previous code, you can use the style of their historical code as a reference. Directly output your code. At the end of your code, please include <e> to indicate its completion. -Real Data- Student's Past Code: {eg_code} New Programming Problem: {question} Error Descriptions: {error_desc} Make a plan then write. Your output should be of t...

  6. [13]

    Even when selecting past records ran- domly or using text similarity retrieval, prediction accuracy remains low

    Evaluating a student’s cognitive ability based solely on past learning accuracy is insufficient, as it does not capture mastery at the knowledge con- cept level. Even when selecting past records ran- domly or using text similarity retrieval, prediction accuracy remains low. This is because such meth- ods often retrieve questions with similar wording but d...

  7. [14]

    Given the same prototype-mapped behavior descriptions, Table 5 shows that simulations based on simple IO or CoT prompts consistently under- perform. This underscores the difficulty LLMs Behavior PredictionRandom Similarity Level Level+RandomLevel+SimilarityPrototype Mapping Solution SimulationIO CoT RefineIO CoT RefineIO CoT RefineIO CoT RefineIO CoT Refi...

  8. [15]

    Differences in objectives. Student simula- tion requires not only predicting whether a student answers a question correctly but also diagnosing errors in detail and simulating realistic behaviors in the form of natural language. Our method gener- ates explicit and interpretable descriptions of mis- takes and solutions, whereas KT methods focus solely on c...

Show all 15 references
  1. [16]

    KT models rely on implicit parametric knowledge representations and problem indices without incorporating task- specific textual inputs (e.g., problem statements)

    Generalization limitations. KT models rely on implicit parametric knowledge representations and problem indices without incorporating task- specific textual inputs (e.g., problem statements). B L 1 2 3 4 5 1 3.36 3.47 3.61 3.61 3.6 2 3.46 3.55 3.65 3.63 3.61 3 3.41 3.53 3.61 3...

  2. [136]

    Zhenlong Dai, Chang Yao, WenKang Han, Yuanying Yuanying, Zhipeng Gao, and Jingyuan Chen

    AAAI Press. Zhenlong Dai, Chang Yao, WenKang Han, Yuanying Yuanying, Zhipeng Gao, and Jingyuan Chen. 2024. Mpcoder: Multi-user personalized code generator with explicit and implicit style representation learn- ing. In Proceedings of the 62nd Annual Meeting of the Association f...

  3. [2022]

    Training language models to follow instruc- tions with human feedback. In Advances in Neural Information Processing Systems 35: Annual Confer- ence on Neural Information Processing Systems 2022, NeurIPS 2022, New Orleans, LA, USA, November 28 - December 9, 2022. Kishore Papine...

  4. [2023]

    In International Conference on Machine Learning, ICML 2023, 23-29 July 2023, Honolulu, Hawaii, USA, volume 202 of Proceedings of Machine Learn- ing Research, pages 337–371

    Using large language models to simulate mul- tiple humans and replicate human subject studies. In International Conference on Machine Learning, ICML 2023, 23-29 July 2023, Honolulu, Hawaii, USA, volume 202 of Proceedings of Machine Learn- ing Research, pages 337–371. PMLR. Ant...

  5. [2024]

    CoRR, abs/2405.03553

    Alphamath almost zero: process supervision without process. CoRR, abs/2405.03553. Nico Daheim, Jakub Macina, Manu Kapur, Iryna Gurevych, and Mrinmaya Sachan. 2024. Stepwise verification and remediation of student reasoning er- rors with large language model tutors. In Proceed-...

  6. [2645]

    In this appendix, we present the following con- tent: A Dataset Statistics and Details 14 A.1 Privacy Protection

    ACM. In this appendix, we present the following con- tent: A Dataset Statistics and Details 14 A.1 Privacy Protection . . . . . . . . . 14 A.2 Dataset Statistics . . . . . . . . . 14 A.3 Significance of Programming Task for Student Simulation . . . . . . 14 A.4 Data Generaliza...

  7. [3571]

    Ye Wang, Wang Lin, Shengyu Zhang, Tao Jin, Linjun Li, Xize Cheng, and Zhou Zhao

    ACM. Ye Wang, Wang Lin, Shengyu Zhang, Tao Jin, Linjun Li, Xize Cheng, and Zhou Zhao. 2023a. Weakly- supervised spoken video grounding via semantic in- teraction learning. In Proceedings of the 61st Annual Meeting of the Association for Computational Lin- guistics (Volume 1: L...

Pith tools

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