ai
4
总安装量
2
周安装量
#52344
全站排名
安装命令
npx skills add https://github.com/poletron/custom-rules --skill ai
Agent 安装分布
github-copilot
2
mcpjam
1
claude-code
1
zencoder
1
cline
1
Skill 文档
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/