ai

Model Development (REQUIRED)

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "ai" with this command: npx skills add poletron/custom-rules/poletron-custom-rules-ai

Critical Patterns

Model Development (REQUIRED)

✅ ALWAYS: Version your models and data

from datetime import datetime

model_config = { "version": "1.2.0", "trained_at": datetime.now().isoformat(), "dataset_hash": compute_hash(training_data), "hyperparameters": {...} }

Reproducibility (REQUIRED)

✅ ALWAYS: Set seeds for reproducibility

import random import numpy as np import torch

def set_seed(seed: int = 42): random.seed(seed) np.random.seed(seed) torch.manual_seed(seed) if torch.cuda.is_available(): torch.cuda.manual_seed_all(seed)

Decision Tree

Need classification? → Start with simple baseline Need embeddings? → Use pre-trained models Need fine-tuning? → Start with small learning rate Need deployment? → Consider ONNX export Need monitoring? → Track drift metrics

Resources

  • ML Development: ml-development.md

  • Cognee Integration: cognee/

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

clean-code

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

typescript

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

code-review-checklist

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

shopify-development

No summary provided by upstream source.

Repository SourceNeeds Review