← Back to list

hyperparam-sweep
by rHedBull
⭐ 0🍴 0📅 Jan 15, 2026
SKILL.md
name: hyperparam-sweep description: Systematically search hyperparameter space. Use when tuning learning rate, batch size, or other hyperparameters.
Hyperparameter Sweep
Systematically search for optimal hyperparameters.
Step 1: Define Search Space
Common spaces: learning_rate (log_uniform 1e-5 to 1e-2), batch_size (categorical), weight_decay (log_uniform), warmup_ratio, dropout
Step 2: Choose Search Strategy
- Grid search: exhaustive, for 2-3 params with few values
- Random search: recommended default, 20-50 runs usually sufficient
- Bayesian: for expensive runs with smooth objective
Step 3: Set Budget
Max runs, max total time, early stopping configuration
Step 4: Execute Sweep
Track progress, report best so far, apply early stopping to bad runs
Step 5: Analyze Results
- Best configuration with metrics
- Parameter importance visualization
- Sensitivity analysis (high/medium/low for each param)
- Recommendations for next steps
Score
Total Score
45/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
○言語
プログラミング言語が設定されている
0/5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon