← Back to list

extract-hyperparameters
by mvillmow
Training framework written in Mojo
⭐ 11🍴 4📅 Jan 24, 2026
SKILL.md
name: extract-hyperparameters description: "Identify and document model hyperparameters from papers. Use when setting up training configurations." mcp_fallback: none category: analysis tier: 2 user-invocable: false
Extract Hyperparameters
Locate and document all hyperparameters mentioned in research papers including learning rates, batch sizes, and model configurations.
When to Use
- Reproducing paper results
- Setting up model training configurations
- Comparing hyperparameter choices across papers
- Planning hyperparameter tuning experiments
Quick Reference
# Extract numeric values and parameters from papers
pdftotext paper.pdf - | grep -i "learning rate\|batch\|epochs\|weight decay\|dropout" | head -20
# Common pattern search
grep -E "\\b(lr|batch_size|epochs|momentum|dropout|layers)\\s*[=:]" config.py
Workflow
- Find hyperparameter table: Look for "Table 1" or "Hyperparameters" section
- Document architecture parameters: Layer sizes, activation functions, normalization
- Extract training parameters: Learning rate, batch size, epochs, optimizers
- Note regularization: Dropout, weight decay, batch normalization
- Create configuration file: Translate to implementation format (YAML/JSON/Mojo)
Output Format
Hyperparameter documentation:
- Model architecture (layers, sizes, activations)
- Training parameters (LR, batch size, epochs)
- Optimizer configuration (type, momentum, decay)
- Regularization settings (dropout, L1/L2)
- Data preprocessing (normalization, augmentation)
- Hardware and precision (float32, float64)
References
- See
prepare-datasetskill for data configuration - See
train-modelskill for training implementation - See
/notes/review/mojo-ml-patterns.mdfor Mojo configuration patterns
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon