← Back to list

identify-architecture
by mvillmow
Training framework written in Mojo
⭐ 11🍴 4📅 Jan 24, 2026
SKILL.md
name: identify-architecture description: "Analyze ML model architecture from papers and code. Use when understanding model structure for implementation." mcp_fallback: none category: analysis tier: 2 user-invocable: false
Identify Architecture
Analyze and document machine learning model architectures including layers, connections, and information flow.
When to Use
- Understanding paper model designs
- Planning model implementation
- Comparing architecture variations
- Documenting neural network structure
Quick Reference
# Extract architecture from paper
# Look for: "Figure X: Architecture of [Model]"
# Check for: Table with layer specifications
# Find: Layer descriptions (Conv2D, FC, BatchNorm, etc.)
# Visualize model structure (Mojo)
# var model: SimpleNet = ...
# print(model) # Should show layer information
Workflow
- Locate architecture diagram: Find visual architecture representation in paper
- List layers: Enumerate all layers with type and parameters
- Document connections: Map data flow between layers (skip connections, merges)
- Extract layer parameters: For each layer record size, activation, normalization
- Create implementation plan: Translate to Mojo struct/function definitions
Output Format
Architecture documentation:
- Model name and source
- Layer-by-layer breakdown
- Layer type (Conv2D, Dense, etc.)
- Parameters (kernel size, stride, padding, activation)
- Input/output shapes
- Data flow diagram (text or ASCII)
- Special components (skip connections, attention)
References
- See
extract-hyperparametersskill for model configuration - See CLAUDE.md > Mojo Syntax Standards for implementation patterns
- See
/notes/review/mojo-ml-patterns.mdfor architecture 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