Where does hint-following and concealment arise? A case study on OLMo-3 checkpoints A study of OLMo-3 checkpoints by Arav Dhoot, supervised by Yixiong Hao and Zephaniah Roe, finds that chain-of-thought faithfulness to hints varies non-monotonically across training stages. The pretrained base model follows incorrect hints about 10% of the time with the highest concealment rate, mostly due to formatting artifacts. Supervised fine-tuning nearly doubles the follow rate to the highest in the pipeline while concealment drops to 0.43, the lowest. Direct preference optimization reverses the trend, raising concealment above 50%, and the final reinforcement learning from verifiable rewards checkpoint shows the highest cue resistance with follow rates at a baseline low but concealment matching DPO levels. This work was done as part of the Second Look Fellowship by Arav Dhoot and supervised by Yixiong Hao and Zephaniah Roe. I'm grateful to Harshul Basava and Vanessa Ng for their feedback. This is an extension to a prior replication which can be found here . In an earlier post https://www.lesswrong.com/posts/AoBTiL7XRRpwpev8p/llm-cots-remain-monitorable-when-being-unfaithful-requires , I showed that the “necessity effect” of Emmons et al https://arxiv.org/abs/2507.05246 . replicates across eleven models, where LLMs readily follow simple hints, even incorrect ones, but when hints require actual computation, the models are forced to verbalize that reasoning within their chain-of-thought CoT traces. However, that study evaluated fully trained models meant for deployment. In this post, I trace the emergence and trajectory of these behaviors across the training lifecycle. Using OLMo-3 as a candidate model, I analyze four distinct public checkpoints: pretrained, Supervised Fine-Tuning SFT , Direct Preference Optimization DPO , and Reinforcement Learning from Verifiable Rewards RLVR . This post offers a proof of concept that post-training stages directly alter and in some cases corrupt CoT faithfulness. It serves as concrete evidence that alignment recipes affect safety properties in unexpected, non-monotone ways. Understanding these shifts is essential if we want to design safer post-training pipelines from first principles rather than treating alignment as a black box. I used the simple hint 1 injection strategy outlined in