Imagine you learned to cook by following recipes written by a professional chef — precise measurements, perfect technique notes. Then on your first night alone in the kitchen, you're working from your own scribbled notes, which are messier and less accurate. Your dishes suffer not because you can't cook, but because you trained on someone else's handwriting and never practiced reading your own. That's the core problem this paper tackles in speech translation. The claim: applying group relative policy optimization (GRPO) to jointly train both the transcription and translation stages of a chain-of-thought speech translation pipeline — on the model's own generated transcripts rather than clean references — closes the train-inference mismatch and outperforms both supervised fine-tuning (SFT) and direct speech-to-translation without the intermediate transcript step. The result is measured across four language pairs on CoVoST 2 and FLEURS using Qwen2.5-Omni-3B. The ladder here is internal: CoT GRPO beats Direct ST GRPO by 1.77 BLEU on CoVoST 2 and 0.83 on FLEURS. Compared to CoT SFT (the natural baseline for chain-of-thought), GRPO adds 0.82 and 0.67 BLEU while cutting WER by 8.8% and 7.2% relatively. These are modest but consistent gains. The paper does not compare against the strongest external SOTA systems like SeamlessM4T or Whisper+NLLB cascades at matched scale, which limits how high the ladder score can go. Architecturally, this sits in the RLHF/GRPO family — reward-based policy optimization applied to a multimodal LLM (Qwen2.5-Omni-3B, a 3-billion-parameter speech-language model). The key design choice is scoring both the transcript and the translation within the same GRPO rollout, comparing three token-level advantage assignment strategies for how credit flows between the two stages. This is a direct application of the DeepSeek-R1 style GRPO recipe to a multimodal chain-of-thought setting rather than pure text reasoning. Integrity is reasonable but bounded. CoVoST 2 and FLEURS are established community benchmarks — no cherry-picking there. However, all comparisons are internal (same base model, same training data), there is no comparison to external cascade or end-to-end SOTA systems, and the paper is five pages with no code release mentioned. The four language pairs (the abstract says 'four languages' without specifying which) are a limited but not unreasonable evaluation scope. The real contribution is showing that the training-inference mismatch in CoT speech translation — where supervised fine-tuning conditions on reference transcripts but inference conditions on model-generated ones — is a concrete, measurable problem, and that GRPO is a practical fix. This is a well-known issue in cascaded NLP pipelines, and the paper provides clean evidence that RL fine-tuning addresses it for speech. The three advantage strategies (which tokens get credit during GRPO) add a useful ablation dimension. What's missing is scale and external context. At 3B parameters and four language pairs, this is a proof-of-concept within one model family. The obvious next step — scaling to larger Qwen-Omni variants or testing on Whisper-based pipelines — would determine whether the gains generalize. The paper also doesn't explore whether the GRPO-trained model's transcripts actually become more useful to the translation stage, or whether it simply learns to be robust to its own errors. That mechanistic question matters for understanding what GRPO is really doing here.