Views
No views yet
| Capability | How |
|---|---|
| 🏋️ Model Training | SFT, DPO, GRPO, Reward Modeling via TRL on HF Jobs (cloud GPUs) |
| 📊 Dataset Management | Search, validate, inspect, filter datasets on HF Hub |
| 🔬 Paper Research | Search, read, and extract training recipes from ML papers |
| 📈 Experiment Tracking | Real-time Trackio dashboards with alerts |
| 🏆 Model Evaluation | inspect-ai and lighteval on local or cloud hardware |
| 🔍 Model Discovery | Benchmark-based model selection and comparison |
| 👁️ Vision Training | Object detection, classification, SAM segmentation |
| 🌐 Gradio Apps | Build web UIs and demos |
| 🔧 Hub Operations | Full repo management, webhooks, collections, endpoints |
1# 1. Clone this repo
2git clone https://huggingface.co/Hoff1610/ml-intern-claude-code
3cd ml-intern-claude-code
4
5# 2. Set your HF token
6export HF_TOKEN=hf_your_token_here
7
8# 3. Run setup
9chmod +x setup.sh
10./setup.sh
11
12# 4. Open Claude Code in your project
13claudehf CLI and uvyour-project/
├── CLAUDE.md ← copy from this repo
└── .claude/
├── settings.json ← copy from this repo
└── hooks/
├── pre_bash.sh ← copy + chmod +x
├── post_tool_log.sh ← copy + chmod +x
└── on_stop.sh ← copy + chmod +xclaude mcp add huggingface -t http "https://huggingface.co/mcp?login"1pip install -U "huggingface_hub[cli]"
2hf skills add --claude --globalml-intern-claude-code/
├── README.md ← This file
├── CLAUDE.md ← System prompt with ML expertise + workflows + guardrails
├── setup.sh ← One-command installer
└── .claude/
├── settings.json ← MCP servers (HF + GitHub) + hooks config
└── hooks/
├── pre_bash.sh ← Safety: blocks destructive commands + token exposure
├── post_tool_log.sh ← Audit: logs all tool calls to JSONL
└── on_stop.sh ← Status: reports running HF Jobs on exit> Train Qwen2.5-0.5B on the Capybara dataset with SFT
> What's the best model for code generation under 7B params?
> Find the latest papers on RLHF and summarize the top approaches
> Evaluate meta-llama/Llama-3.2-1B on MMLU
> Inspect trl-lib/ultrafeedback_binarized for DPO compatibilityClaude Code
├── CLAUDE.md (system prompt with ML expertise)
├── HF MCP Server → model/dataset/paper search, jobs, docs
├── HF Skills → training, tracking, evals, datasets, papers
├── Hooks → safety, audit logging, job status
└── GitHub MCP Server (optional) → code search| Requirement | Why |
|---|---|
| Claude Code | Agent runtime |
| HF Token (write access) | Hub auth + Jobs + MCP |
| HF Pro/Team/Enterprise | Required for HF Jobs |
jq | Hook JSON parsing |
uv | PEP 723 training scripts |