Papers
Topics
Authors
Recent
Search
2000 character limit reached

Think-Before-Speak Strategies

Updated 4 July 2026
  • Think-before-Speak is a family of strategies where internal computation is separated from external output to enhance planning and reasoning.
  • It encompasses methods such as explicit chain-of-thought, latent embeddings, pause tokens, and role-conditioned dialogue to address diverse application needs.
  • Empirical evaluations show that incorporating a thinking phase improves accuracy, dialogue coherence, and efficiency across tasks like coding, math reasoning, and multi-modal interactions.

Think-before-Speak denotes a family of modeling strategies in which a system performs explicit or latent internal computation before producing a public output. In its narrowest usage, it refers to progressive test-time reasoning that surfaces hidden constraints, subgoals, and latent facts before an answer is emitted; in broader usage, the same principle has been transferred to commonsense response generation, communication-skill planning, role-conditioned dialogue, retrieval, multimodal utterance prediction, streaming speech interaction, proactive intervention timing, and even logit-level steering immediately before token emission (Yan et al., 11 Feb 2025, Zhou et al., 2021, Zhou et al., 2023, An et al., 16 Jan 2026). Across these variants, the common design move is to separate internal evaluation from external expression.

1. Conceptual scope and historical development

A concise formulation appears in "O1 Embedder" (Yan et al., 11 Feb 2025): Think-before-Speak in LLMs refers to progressive, test-time reasoning in which the model explores intermediate thoughts before producing an answer. The same source treats this as a form of test-time scaling and links it to reasoning LLMs such as O1/O3 and R1, whose added inference-time computation improves complex coding, math, and compositional tasks. This framing is narrower than the full literature, but it captures the central intuition that output quality can improve when the model does not respond immediately.

The terminology subsequently spread across several distinct research lines. "Look Before you Speak: Visually Contextualized Utterances" (Seo et al., 2020) operationalized a multimodal version in which the model conditions the next utterance on both visual and textual context. "Think Before You Speak: Explicitly Generating Implicit Commonsense Knowledge for Response Generation" (Zhou et al., 2021) inserted a knowledge-generation phase before dialogue response generation. "Think Before You Speak: Improving Multi-Action Dialog Policy by Planning Single-Action Dialogs" (Zhang et al., 2022) used model-based planning before multi-action dialogue decisions. "Think before you speak: Training LLMs With Pause Tokens" (Goyal et al., 2023) replaced explicit textual reasoning with learnable delays that increase internal computation before the next token. By 2025 and 2026, the phrase had expanded into retrieval, spoken dialogue, social simulation, and control settings (Yan et al., 11 Feb 2025, Zou et al., 26 Jan 2026, Yang et al., 2 Jun 2026).

This literature suggests that Think-before-Speak is not a single mechanism but a design family. In some systems, “thinking” is an explicit natural-language segment; in others it is a pause token, a latent embedding, a retrieved thought, a dialogue-state rollout, or a policy over wait/think/answer actions. A plausible implication is that the phrase now names a systems principle—separate internal deliberation from external output—rather than a fixed architecture.

2. Explicit inner monologue and silent computation in text generation

One of the clearest textual implementations is the commonsense response-generation model "Think Before You Speak: Explicitly Generating Implicit Commonsense Knowledge for Response Generation" (Zhou et al., 2021). Its factorization is two-stage: the model first generates implicit knowledge Pθ(IH)P_\theta(I \mid H') and then generates the response Pθ(RH,I)P_\theta(R \mid H', I). The backbone is DialoGPT-medium, and the knowledge is weakly aligned to dialogue turns using ConceptNet 5.5 through hard-matching or SentenceBERT-based soft-matching. In human evaluation, the model generates knowledge that makes sense and is relevant to the dialogue around 85%85\% of the time, and the resulting responses are judged more informative, specific, and commonsense-following than end-to-end or retrieval-based baselines (Zhou et al., 2021).

A different textual line uses inner monologue to cultivate communication skills. "Think Before You Speak: Cultivating Communication Skills of LLMs via Inner Monologue" (Zhou et al., 2023) introduced CSIM and the Cskills benchmark covering topic transition, proactively asking questions, concept guidance, empathy, and summarising often. On self-chat evaluation with ChatGPT, CSIM raised Goal from $0.175$ to $0.925$ and humanness from $1.642$ to $2.650$; on human-bot chat, Goal rose from $0.133$ to $0.825$ and rounds increased from $2.13$ to Pθ(RH,I)P_\theta(R \mid H', I)0 (Zhou et al., 2023). The key mechanism is not generic chain-of-thought but a skill-selective inner monologue that decides whether and how to deploy a conversational skill before the visible reply.

Role-playing work pushed this further by making the intermediate thought explicitly character-grounded. "Thinking Before Speaking: A Role-playing Model with Mindset" (Zhang et al., 2024) represents the internal state as Role_name (thinking): ... followed by Role_name (speaking): ..., augments training with “hallucination knowledge” examples that tempt the model to exceed the role’s knowledge, and fine-tunes models such as glm-4-9b-chat, Llama-2-7b, and Llama-3-8B with LoRA. The dataset covers 152 roles and 889,779 sentences. TBS_Llama3 reaches an AVG of Pθ(RH,I)P_\theta(R \mid H', I)1 on CharacterLLM metrics and an Overall score of Pθ(RH,I)P_\theta(R \mid H', I)2 on the authors’ new metrics; removing the mindset drops Logical Thinking from Pθ(RH,I)P_\theta(R \mid H', I)3 to Pθ(RH,I)P_\theta(R \mid H', I)4 (Zhang et al., 2024). Here, “thinking” serves as a role-specific logic and knowledge-boundary filter, not merely as a generic reasoning trace.

Not all textual Think-before-Speak systems externalize thought. "Think before you speak: Training LLMs With Pause Tokens" (Goyal et al., 2023) introduces a learnable <pause> token and delays output extraction until the last pause is processed, thereby allowing the model to manipulate Pθ(RH,I)P_\theta(R \mid H', I)5 hidden vectors per layer before generating the Pθ(RH,I)P_\theta(R \mid H', I)6 token. For the 1B model, pause-pretraining plus pause-finetuning improved 8 of 9 tasks, including a gain of Pθ(RH,I)P_\theta(R \mid H', I)7 EM on SQuAD, Pθ(RH,I)P_\theta(R \mid H', I)8 on CommonSenseQA, and Pθ(RH,I)P_\theta(R \mid H', I)9 accuracy on GSM8k (Goyal et al., 2023). This is a silent-compute version of Think-before-Speak: the model “thinks” without producing an explicit intermediate text.

A common misconception is that Think-before-Speak is synonymous with visible chain-of-thought. These papers show a wider design space: explicit commonsense generation, skill planning, role-grounded mindset, and latent or silent delay mechanisms all implement the same high-level separation between internal deliberation and public response.

3. Planning before action in dialogue policy, persuasion, and mathematical reasoning

In task-oriented dialogue, Think-before-Speak often means planning over future action consequences before emitting the current response. "Think Before You Speak: Improving Multi-Action Dialog Policy by Planning Single-Action Dialogs" (Zhang et al., 2022) addresses multi-action dialog policy by simulating 85%85\%0 independent single-action dialog paths with a discrete policy model and a GRU world model, then decoding path-wise distributions over atomic actions and aggregating them. On MultiWOZ interactive evaluation, PEDP achieves Success 85%85\%1, Turn 85%85\%2, Match 85%85\%3, and Inform Recall 85%85\%4, improving Success by about 85%85\%5 over DiaAdv. Removing planning drops the MultiWOZ standard F1 to 85%85\%6, which the paper describes as collapsing to DiaMultiDense performance (Zhang et al., 2022). The salient point is that planning is not ancillary; it is the primary driver of generalization to unseen dialog flows.

Persuasive dialogue extends the same idea to Theory-of-Mind reasoning. "Think Thrice Before You Speak: Dual knowledge-enhanced Theory-of-Mind Reasoning for Persuasive Agents" (Ma et al., 21 May 2026) formulates ToM-PD in the Belief–Desire–Intention framework and decomposes reasoning into three stages: desire inference, belief inference, and persuasive-strategy selection. Its ToM-BPD dataset contains 504 dialogues, 3,926 utterances, and an average of 7.79 turns per dialogue. The reported Qwen-3-8B + TTBYS result is Desire 85%85\%7, Belief 85%85\%8, and Strategy 85%85\%9; the abstract reports gains of $0.175$0, $0.175$1, and $0.175$2 over GPT-5, while the detailed table shows a $0.175$3 point gain for belief, a discrepancy explicitly noted in the paper details (Ma et al., 21 May 2026). In this setting, Think-before-Speak becomes stepwise inference over latent mental states before a persuasive move is chosen.

Mathematical reasoning work uses the phrase even more literally. "Thinking Before You Speak: A Proactive Test-time Scaling Approach" (Li et al., 26 Aug 2025) inserts an “insight” before each reasoning step, with two fields: situation, which reviews the current status, and goal, which initiates the next step. The framework automatically constructs and filters an insight library, retrieves $0.175$4 exemplars during inference, and can execute Python code blocks in a sandbox. Full TBYS reaches $0.175$5 on MATH-500 and $0.175$6 on AIME, compared with $0.175$7 and $0.175$8 for the 8-shot baseline; TBYS + self-consistency improves over self-consistency by over 5 percentage points on MATH-500 and by 7.5 percentage points on AIME (Li et al., 26 Aug 2025). The paper’s central claim is that the missing object in standard CoT is not merely more steps, but the per-step review-and-plan transition.

Taken together, these systems show that Think-before-Speak can function as a planning layer over action spaces as different as atomic dialogue acts, persuasive strategies, and mathematical subgoals. This suggests that the core value of the paradigm lies in transition management—how a model moves from its current state to the next action—rather than only in producing longer explanations.

4. Retrieval and information access as think-before-action

The retrieval literature translates Think-before-Speak into Think-before-Action. "O1 Embedder: Let Retrievers Think Before Action" (Yan et al., 11 Feb 2025) proposes a model with two coupled functions—think and embed. For a query $0.175$9, the model first generates multiple thoughts $0.925$0, then conditions the query embedding on these thoughts and aggregates them by mean pooling:

$0.925$1

Retrieval then uses inner-product similarity $0.925$2 over document vectors (Yan et al., 11 Feb 2025).

The data-synthesis pipeline is central. An LLM-expert, Llama-3.1-70B-Instruct, generates candidate thoughts; a retrieval committee consisting of BM25, BGE-EN-large-v1.5, GTE-large, and Stella-EN-1.5B-v5 selects the “golden thought” by majority voting over the candidate with maximal similarity to the ground-truth document. Training combines behavior cloning on the selected thought with contrastive learning on both the bare query embedding and the thought-augmented query embedding. The resulting joint loss encourages both “fast” query-only retrieval and “slow” thought-conditioned retrieval (Yan et al., 11 Feb 2025).

Empirically, the model is evaluated on 12 popular datasets spanning in-domain and out-of-domain scenarios. With a Llama-2-7B backbone, it reaches MRR@10 $0.925$3 and Recall@1k $0.925$4 on MS MARCO Dev, plus nDCG@10 $0.925$5 on TREC DL’19 and $0.925$6 on TREC DL’20. On nine out-of-domain datasets under the BEIR protocol, the average nDCG@10 is $0.925$7, compared with $0.925$8 for Promptriever, $0.925$9 for RepLLaMA, $1.642$0 for OpenAI-Ada-002, and $1.642$1 for Contriever (Yan et al., 11 Feb 2025). Gains are especially pronounced on reasoning-heavy datasets such as NQ and HotPotQA.

The paper also isolates a key methodological point: using a stand-alone generator to produce thoughts for RepLLaMA yields a $1.642$2 average change overall, whereas O1’s joint training improves by $1.642$3 on average across datasets (Yan et al., 11 Feb 2025). This directly argues against treating thought generation as a plug-in query expansion step. In O1 Embedder, thinking is useful only when the embedding model has been co-trained to exploit it.

A broader implication is that Think-before-Speak can be reinterpreted as representation shaping. The “speech” step is not always literal output text; it may be a retrieval action, ranking decision, or memory access. In that sense, the retrieval literature extends the paradigm from response generation to information-seeking computation.

5. Spoken interaction and real-time reasoning

Speech settings expose the main tension in Think-before-Speak more sharply than text: explicit reasoning improves quality, but sequential reasoning before speech creates visible delay. Several architectures therefore move from think-before-speaking to think-while-listening or thinking-in-speaking.

"LTS-VoiceAgent: A Listen-Think-Speak Framework for Efficient Streaming Voice Interaction via Semantic Triggering and Incremental Reasoning" (Zou et al., 26 Jan 2026) keeps the standard cascaded ASR→LLM→TTS architecture but adds a Dynamic Semantic Trigger and a Dual-Role Stream Orchestrator. A background Thinker maintains a compact JSON state with corrected text, key variables, and plan, while a foreground Speaker streams speculative answers. On BigBenchAudio, LTS-VoiceAgent reaches $1.642$4 accuracy versus $1.642$5 for PredGen and $1.642$6 for LTS-VAD, with TTFS $1.642$7 ms; across benchmarks, NFE is about $1.642$8–$1.642$9 with interruption rates about $2.650$0–$2.650$1, compared with PredGen values around $2.650$2–$2.650$3 NFE and approximately $2.650$4 interruption rates (Zou et al., 26 Jan 2026). The design target is not just accuracy, but the accuracy–latency–efficiency trade-off.

"SHANKS: Simultaneous Hearing and Thinking for Spoken LLMs" (Chiang et al., 8 Oct 2025) instead generates hidden chain-of-thought chunks while the user is still talking. In a step-by-step math setting, SHANKS-E2E reaches an interrupt ratio of $2.650$5 and a valid interrupt ratio of $2.650$6 on the wrong subset, compared with $2.650$7 and $2.650$8 for a no-thinking baseline; the paper summarizes this as a $2.650$9 percentage point improvement in valid interruption ratio. In tool-augmented dialogue, SHANKS completes $0.133$0 of tool calls before the user finishes the turn (Chiang et al., 8 Oct 2025). Here the value of thinking is anticipatory intervention, not only better final answers.

"Mini-Omni-Reasoner: Token-Level Thinking-in-Speaking in Large Speech Models" (Xie et al., 18 Aug 2025) replaces sequential reasoning with a token-level interleaving schedule. With $0.133$1, the model emits two response tokens followed by eight silent reasoning tokens, and the Talker vocalizes only the response tokens. On Spoken-MQA, the detailed table reports arithmetic average improving from $0.133$2 to $0.133$3 and reasoning average from $0.133$4 to $0.133$5 versus Qwen2.5-Omni-3B; the abstract reports $0.133$6 arithmetic and $0.133$7 contextual gains, which the paper notes may reflect a different aggregation (Xie et al., 18 Aug 2025). Spoken response length is about 42.9 words, compared with about 116.13 for Qwen2.5-Omni-7B and about 283.86 for Freeze-Omni, and the paper characterizes the system as having zero decoding latency (Xie et al., 18 Aug 2025).

"Think, Verbalize, then Speak" (Woo et al., 19 Sep 2025) keeps a full reasoning LLM intact, then inserts a separate verbalization stage. Its ReVerT verbalizer learns to emit a gating token con during continued reasoning and bov ... eov around speech-ready reformulations. On GSM8K with a Qwen2.5-7B Think model and a Qwen2.5-3B ReVerT verbalizer, TVS(ReVerT) preserves accuracy at $0.133$8 versus $0.133$9 for CoT, while reducing word count from $0.825$0 to about $0.825$1 and cutting time-to-first-speech $0.825$2 from about $0.825$3 s to about $0.825$4 s (Woo et al., 19 Sep 2025). This is a direct response to the complaint that raw CoT is often unreadable when spoken.

Two later speech papers push internalization further. "The Silent Thought: Modeling Internal Cognition in Full-Duplex Spoken Dialogue Models via Latent Reasoning" (Wu et al., 18 Mar 2026) represents thought as a sequence of latent embeddings $0.825$5 and trains the causal model with an ELBO-based objective rather than explicit reasoning annotations. It improves Llama Questions from $0.825$6 to $0.825$7 and MMSU from $0.825$8 to $0.825$9 while keeping turn-taking and barge-in latencies competitive (Wu et al., 18 Mar 2026). "Mind-Paced Speaking: A Dual-Brain Approach to Real-Time Reasoning in Spoken LLMs" (Wu et al., 10 Oct 2025) separates a Formulation Brain from an Articulation Brain; MPS-thkfirst reaches $2.13$0 on Spoken-MQA, and MPS-spkfirst reaches $2.13$1 under a zero-latency configuration (Wu et al., 10 Oct 2025).

System Core mechanism Selected result
LTS-VoiceAgent Dynamic Semantic Trigger + Thinker/Speaker orchestration $2.13$2 on BigBenchAudio; TTFS $2.13$3 ms (Zou et al., 26 Jan 2026)
SHANKS Hidden CoT while listening $2.13$4 tool calls before turn end (Chiang et al., 8 Oct 2025)
Mini-Omni-Reasoner 2:8 token-level thinking-in-speaking $2.13$5 arithmetic average; zero decoding latency (Xie et al., 18 Aug 2025)
TVS/ReVerT Asynchronous verbalization between think and speak $2.13$6 s vs $2.13$7 s (Woo et al., 19 Sep 2025)
MPS Dual-brain formulation/articulation $2.13$8 Spoken-MQA at zero latency (Wu et al., 10 Oct 2025)

A persistent controversy in this area concerns whether explicit thought should be spoken, hidden, verbalized, or kept latent. The speech literature does not resolve this with a single answer. Instead, it partitions the problem: explicit reasoning aids quality, but real-time interaction often requires latent thought, streamed partial thought, or a separate verbalizer so that the user does not hear the entire internal process.

6. Multimodal grounding, timing control, and intervention policies

Multimodal work shows that “thinking” can be grounded in perceptual evidence rather than textual reasoning alone. "Look Before you Speak: Visually Contextualized Utterances" (Seo et al., 2020) introduces the Visually Conditioned Future Utterance Prediction task on HowTo100M and the Co-attentional Multimodal Video Transformer, which fuses object-centric and scene features with transcript tokens. HowToFUP contains about 35M training examples, and CoMVT with combined object and scene features reaches R@1 $2.13$9 and R@5 Pθ(RH,I)P_\theta(R \mid H', I)00, compared with Pθ(RH,I)P_\theta(R \mid H', I)01 and Pθ(RH,I)P_\theta(R \mid H', I)02 for the text-only baseline with BERT pretraining (Seo et al., 2020). The same pretraining transfers to VideoQA, where the paper reports state-of-the-art or competitive performance on MSVD-QA, MSRVTT-QA, ActivityNet-QA, and How2QA.

Full-duplex spoken models use the same principle to solve when-to-speak and how-much-to-say problems. "Think Before You Talk: Enhancing Meaningful Dialogue Generation in Full-Duplex Speech LLMs with Planning-Inspired Text Guidance" (Cui et al., 10 Aug 2025) proposes TurnGuide, which dynamically segments assistant speech into turns, injects turn-level text guidance at the turn onset, and interleaves text and speech chunks at a 5:5 ratio. On conditional assistant evaluation, TurnGuide L3:1 reaches a GPT-score average of Pθ(RH,I)P_\theta(R \mid H', I)03 versus Pθ(RH,I)P_\theta(R \mid H', I)04 for Speech Chunk Interleaving, a Pθ(RH,I)P_\theta(R \mid H', I)05 gain, while preserving turn-taking statistics on Candor with conditional overall correlation Pθ(RH,I)P_\theta(R \mid H', I)06 versus Pθ(RH,I)P_\theta(R \mid H', I)07 for SCI (Cui et al., 10 Aug 2025). The paper’s claim is that planning-inspired text can improve semantic meaningfulness without destroying duplex timing.

Other work learns explicit intervention timing. "DiscussLLM: Teaching LLMs When to Speak" (Patel et al., 25 Aug 2025) synthesizes 88k discussions, each with one of five intervention types and a single AI intervention. The special silent token is >. On the test set, the integrated end-to-end model reaches Interruption Accuracy Pθ(RH,I)P_\theta(R \mid H', I)08, the decoupled classifier-generator reaches Pθ(RH,I)P_\theta(R \mid H', I)09, and zero-shot reaches Pθ(RH,I)P_\theta(R \mid H', I)10; the decoupled system reduces latency from Pθ(RH,I)P_\theta(R \mid H', I)11 ms per turn to Pθ(RH,I)P_\theta(R \mid H', I)12 ms and GPU memory from Pθ(RH,I)P_\theta(R \mid H', I)13 GB to Pθ(RH,I)P_\theta(R \mid H', I)14 GB (Patel et al., 25 Aug 2025). This work defines Think-before-Speak as the ability to remain silent until an intervention is useful.

The audio-control literature makes the same point more explicitly. "Learning When to Think While Listening in Large Audio-LLMs" (Song et al., 26 May 2026) formulates a wait–think–answer controller over partial audio evidence and optimizes it with SFT followed by DAPO. On the synthetic SRQA benchmark, the six-reward DAPO controller improves row-weighted accuracy from Pθ(RH,I)P_\theta(R \mid H', I)15 to Pθ(RH,I)P_\theta(R \mid H', I)16 while reducing post-endpoint final-think length from Pθ(RH,I)P_\theta(R \mid H', I)17 to Pθ(RH,I)P_\theta(R \mid H', I)18 tokens, a 14% reduction. On the 186-item Real Audio Bench, SFT achieves the strongest accuracy, while the six-reward DAPO controller is the only learned variant whose final-think length falls below the base (Song et al., 26 May 2026). The conceptual move here is subtle: the model does not merely think; it learns when to make intermediate reasoning explicit during the stream.

7. Steering, internal-state observability, and broader interpretations

Some work extends Think-before-Speak from reasoning architecture to direct output control. "Steering LLMs Before They Speak: Logit-Level Interventions" (An et al., 16 Jan 2026) modifies the logit vector immediately before softmax using token-level score tables derived from z-normalized log-odds on labeled corpora. On OSE with Llama-3.1-8B, accuracy rises from Pθ(RH,I)P_\theta(R \mid H', I)19 to Pθ(RH,I)P_\theta(R \mid H', I)20 and F1 from Pθ(RH,I)P_\theta(R \mid H', I)21 to Pθ(RH,I)P_\theta(R \mid H', I)22; on WikiPol, accuracy improves from Pθ(RH,I)P_\theta(R \mid H', I)23 to Pθ(RH,I)P_\theta(R \mid H', I)24 for the 8B model; on RealTox, F1 rises from Pθ(RH,I)P_\theta(R \mid H', I)25 to Pθ(RH,I)P_\theta(R \mid H', I)26 (An et al., 16 Jan 2026). This is the most literal interpretation of “before they speak”: the intervention occurs after the model has formed its token distribution and immediately before token emission.

A very different extension appears in multi-agent simulation. "Think-Before-Speak: From Internal Evaluation to Public Expression in Multi-Agent Social Simulation" (Yang et al., 2 Jun 2026) separates private reasoning from public utterance generation in discrete intervals. Every agent updates structured internal states—perceived inconsistency, dissonance tension, motivation to reduce dissonance, perceived opinion climate, perceived isolation risk, response strategy, and willingness to speak—before an orchestrator commits one utterance to the public dialogue. Empirically, a Pθ(RH,I)P_\theta(R \mid H', I)27 increase in dissonance-related appraisal corresponds to an odds ratio of about Pθ(RH,I)P_\theta(R \mid H', I)28 for willingness to speak, while a Pθ(RH,I)P_\theta(R \mid H', I)29 increase in silence-pressure appraisal corresponds to an odds ratio of about Pθ(RH,I)P_\theta(R \mid H', I)30; once intention is formed, willing-mode turn allocation raises the odds of being selected to speak by about Pθ(RH,I)P_\theta(R \mid H', I)31 (Yang et al., 2 Jun 2026). The paper explicitly cautions that these are simulation process traces rather than validated human psychometrics.

This broader literature shows that Think-before-Speak can refer to at least three analytically distinct objects. First, it can denote an internal reasoning trace that improves answer quality. Second, it can denote a control layer that decides whether, when, or how to speak. Third, it can denote a modeling interface between private state and public expression. The recurring technical issue is not merely reasoning accuracy, but observability and pacing: what internal state is represented, when it is computed, whether it is exposed, and how it governs outward action.

A stable conclusion across these papers is that direct input-to-output mapping is often suboptimal when tasks require hidden constraints, latent state tracking, dynamic intervention timing, or modality-specific delivery control. The literature does not endorse one universal implementation. Instead, it offers a taxonomy: explicit inner monologue, retrieval thoughts, pause tokens, latent embeddings, streamed partial thoughts, verbalizers, dual-brain architectures, decision controllers, and logit-level steering all instantiate the same principle in different operational regimes.

Definition Search Book Streamline Icon: https://streamlinehq.com
References (20)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Think-before-Speak.