bash git clone https://github.com/Xiangyue-Zhang/auto-deep-researcher-24x7.git cd auto-deep-researcher-24x7 pip install -r requirements.txt bash For Anthropic (Claude) export ANTHROPIC API KEY=your key here For OpenAI (Codex) export OPENAI API KEY=your key here bash mkdir my-experiment cd my-experiment markdown Goal Train a ResNet-50 on CIFAR-100 to reach 80%+ top-1 accuracy. Codebase Create the training code from scratch in PyTorch. What to Try - Start with a basic ResNet-50 baseline (lr=0.1, SGD, cosine schedule). - If accuracy < 75%, improve optimizer and learning rate schedule. - If accur…