github.com/synthetic-sciences/openscience
| Skill | Added | Review |
|---|---|---|
nemo-curator backend/cli/skills/ml-training/nemo-curator/SKILL.md GPU-accelerated data curation for LLM training. Supports text/image/video/audio. Features fuzzy deduplication (16× faster), quality filtering (30+ heuristics), semantic deduplication, PII redaction, NSFW detection. Scales across GPUs with RAPIDS. Use for preparing high-quality training datasets, cleaning web data, or deduplicating large corpora. | 66 66 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 3a6c3a9 | |
nanogpt backend/cli/skills/ml-training/nanogpt/SKILL.md Educational GPT implementation in ~300 lines. Reproduces GPT-2 (124M) on OpenWebText. Clean, hackable code for learning transformers. By Andrej Karpathy. Perfect for understanding GPT architecture from scratch. Train on Shakespeare (CPU) or OpenWebText (multi-GPU). | 52 52 Impact — No eval scenarios have been run Securityby Low Low-risk findings worth noting Version: 3a6c3a9 | |
moe-training backend/cli/skills/ml-training/moe-training/SKILL.md Train Mixture of Experts (MoE) models using DeepSpeed or HuggingFace. Use when training large-scale models with limited compute (5× cost reduction vs dense models), implementing sparse architectures like Mixtral 8x7B or DeepSeek-V3, or scaling model capacity without proportional compute increase. Covers MoE architectures, routing mechanisms, load balancing, expert parallelism, and inference optimization. | 66 66 Impact — No eval scenarios have been run Securityby Low Low-risk findings worth noting Version: 3a6c3a9 | |
model-pruning backend/cli/skills/ml-training/model-pruning/SKILL.md Reduce LLM size and accelerate inference using pruning techniques like Wanda and SparseGPT. Use when compressing models without retraining, achieving 50% sparsity with minimal accuracy loss, or enabling faster inference on hardware accelerators. Covers unstructured pruning, structured pruning, N:M sparsity, magnitude pruning, and one-shot methods. | 59 59 Impact — No eval scenarios have been run Securityby Low Low-risk findings worth noting Version: 3a6c3a9 | |
model-merging backend/cli/skills/ml-training/model-merging/SKILL.md Merge multiple fine-tuned models using mergekit to combine capabilities without retraining. Use when creating specialized models by blending domain-specific expertise (math + coding + chat), improving performance beyond single models, or experimenting rapidly with model variants. Covers SLERP, TIES-Merging, DARE, Task Arithmetic, linear merging, and production deployment strategies. | 63 63 Impact — No eval scenarios have been run Securityby Low Low-risk findings worth noting Version: 3a6c3a9 | |
model-economics backend/cli/skills/ml-training/model-economics/SKILL.md Cost modeling and ROI analysis for specialized LLM development. Use when deciding whether to train a custom model, estimating total cost, or calculating break-even vs frontier APIs. Covers training costs, inference costs, and time-to-ROI projections. | 67 67 Impact — No eval scenarios have been run Securityby Low Low-risk findings worth noting Version: 3a6c3a9 | |
mlflow backend/cli/skills/ml-training/mlflow/SKILL.md Track ML experiments, manage model registry with versioning, deploy models to production, and reproduce experiments with MLflow - framework-agnostic ML lifecycle platform | 56 56 Impact — No eval scenarios have been run Securityby High Do not use without reviewing Version: 3a6c3a9 | |
ml-benchmark-evaluation backend/cli/skills/ml-training/ml-benchmark-evaluation/SKILL.md Rigorous methodology for evaluating ML models on established benchmarks. Covers proper train/val/test splits, baseline verification from original papers, exact metric formula discrepancies, data-leak detection checklist, multi-seed robustness, and honest reporting templates. Use when claiming to beat published baselines, writing methods papers, or auditing existing results. | 72 72 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 3a6c3a9 | |
training-llms-megatron backend/cli/skills/ml-training/megatron-core/SKILL.md Trains large language models (2B-462B parameters) using NVIDIA Megatron-Core with advanced parallelism strategies. Use when training models >1B parameters, need maximum GPU efficiency (47% MFU on H100), or require tensor/pipeline/sequence/context/expert parallelism. Production-ready framework used for Nemotron, LLaMA, DeepSeek. | 72 72 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 3a6c3a9 | |
mamba-architecture backend/cli/skills/ml-training/mamba/SKILL.md State-space model with O(n) complexity vs Transformers' O(n²). 5× faster inference, million-token sequences, no KV cache. Selective SSM with hardware-aware design. Mamba-1 (d_state=16) and Mamba-2 (d_state=128, multi-head). Models 130M-2.8B on HuggingFace. | 55 55 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 3a6c3a9 | |
evaluating-llms-harness backend/cli/skills/ml-training/lm-evaluation-harness/SKILL.md Evaluates LLMs across 60+ academic benchmarks (MMLU, HumanEval, GSM8K, TruthfulQA, HellaSwag). Use when benchmarking model quality, comparing models, reporting academic results, or tracking training progress. Industry standard used by EleutherAI, HuggingFace, and major labs. Supports HuggingFace, vLLM, APIs. | 62 62 Impact — No eval scenarios have been run Securityby Low Low-risk findings worth noting Version: 3a6c3a9 | |
llama-factory backend/cli/skills/ml-training/llama-factory/SKILL.md Expert guidance for fine-tuning LLMs with LLaMA-Factory - WebUI no-code, 100+ models, 2/3/4/5/6/8-bit QLoRA, multimodal support | 50 50 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 3a6c3a9 | |
implementing-llms-litgpt backend/cli/skills/ml-training/litgpt/SKILL.md Implements and trains LLMs using Lightning AI's LitGPT with 20+ pretrained architectures (Llama, Gemma, Phi, Qwen, Mistral). Use when need clean model implementations, educational understanding of architectures, or production fine-tuning with LoRA/QLoRA. Single-file implementations, no abstraction layers. | 64 64 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 3a6c3a9 | |
knowledge-distillation backend/cli/skills/ml-training/knowledge-distillation/SKILL.md Compress large language models using knowledge distillation from teacher to student models. Use when deploying smaller models with retained performance, transferring GPT-4 capabilities to open-source models, or reducing inference costs. Covers temperature scaling, soft targets, reverse KLD, logit distillation, and MiniLLM training strategies. | 61 61 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 3a6c3a9 | |
hugging-face-model-trainer backend/cli/skills/ml-training/hugging-face-model-trainer/SKILL.md This skill should be used when users want to train or fine-tune language models using TRL (Transformer Reinforcement Learning) on Hugging Face Jobs infrastructure. Covers SFT, DPO, GRPO and reward modeling training methods, plus GGUF conversion for local deployment. Includes guidance on the TRL Jobs package, UV scripts with PEP 723 format, dataset preparation and validation, hardware selection, cost estimation, Trackio monitoring, Hub authentication, and model persistence. Should be invoked for tasks involving cloud GPU training, GGUF conversion, or when users mention training on Hugging Face Jobs without local GPU setup. | 70 70 Impact — No eval scenarios have been run Securityby Low Low-risk findings worth noting Version: 3a6c3a9 | |
hugging-face-evaluation backend/cli/skills/ml-training/hugging-face-evaluation/SKILL.md Add and manage evaluation results in Hugging Face model cards. Supports extracting eval tables from README content, importing scores from Artificial Analysis API, and running custom model evaluations with vLLM/lighteval. Works with the model-index metadata format. | 60 60 Impact — No eval scenarios have been run Securityby Low Low-risk findings worth noting Version: 3a6c3a9 | |
hqq-quantization backend/cli/skills/ml-training/hqq/SKILL.md Half-Quadratic Quantization for LLMs without calibration data. Use when quantizing models to 4/3/2-bit precision without needing calibration datasets, for fast quantization workflows, or when deploying with vLLM or HuggingFace Transformers. | 68 68 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 3a6c3a9 | |
grpo-rl-training backend/cli/skills/ml-training/grpo-rl-training/SKILL.md Expert guidance for GRPO/RL fine-tuning with TRL for reasoning and task-specific model training | 52 52 Impact — No eval scenarios have been run Securityby Critical Do not install without reviewing Version: 3a6c3a9 | |
gptq backend/cli/skills/ml-training/gptq/SKILL.md Post-training 4-bit quantization for LLMs with minimal accuracy loss. Use for deploying large models (70B, 405B) on consumer GPUs, when you need 4× memory reduction with <2% perplexity degradation, or for faster inference (3-4× speedup) vs FP16. Integrates with transformers and PEFT for QLoRA fine-tuning. | 66 66 Impact — No eval scenarios have been run Securityby Low Low-risk findings worth noting Version: 3a6c3a9 | |
geniml backend/cli/skills/ml-training/geniml/SKILL.md This skill should be used when working with genomic interval data (BED files) for machine learning tasks. Use for training region embeddings (Region2Vec, BEDspace), single-cell ATAC-seq analysis (scEmbed), building consensus peaks (universes), or any ML-based analysis of genomic regions. Applies to BED file collections, scATAC-seq data, chromatin accessibility datasets, and region-based genomic feature learning. | 69 69 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 3a6c3a9 | |
optimizing-attention-flash backend/cli/skills/ml-training/flash-attention/SKILL.md Optimizes transformer attention with Flash Attention for 2-4x speedup and 10-20x memory reduction. Use when training/running transformers with long sequences (>512 tokens), encountering GPU memory issues with attention, or need faster inference. Supports PyTorch native SDPA, flash-attn library, H100 FP8, and sliding window attention. | 66 66 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 3a6c3a9 | |
deepspeed backend/cli/skills/ml-training/deepspeed/SKILL.md Expert guidance for distributed training with DeepSpeed - ZeRO optimization stages, pipeline parallelism, FP16/BF16/FP8, 1-bit Adam, sparse attention | 42 42 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 3a6c3a9 | |
colab-finetuning backend/cli/skills/ml-training/colab-finetuning/SKILL.md Fine-tune LLMs on Google Colab GPUs directly from openscience. Connects to Colab runtimes via WebSocket bridge for remote training with Unsloth. Supports SFT, GRPO, DPO, vision, and TTS workflows on free T4 to Pro A100 GPUs. | 58 58 Impact — No eval scenarios have been run Securityby Critical Do not install without reviewing Version: 3a6c3a9 | |
quantizing-models-bitsandbytes backend/cli/skills/ml-training/bitsandbytes/SKILL.md Quantizes LLMs to 8-bit or 4-bit for 50-75% memory reduction with minimal accuracy loss. Use when GPU memory is limited, need to fit larger models, or want faster inference. Supports INT8, NF4, FP4 formats, QLoRA training, and 8-bit optimizers. Works with HuggingFace Transformers. | 69 69 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 3a6c3a9 | |
evaluating-code-models backend/cli/skills/ml-training/bigcode-evaluation-harness/SKILL.md Evaluates code generation models across HumanEval, MBPP, MultiPL-E, and 15+ benchmarks with pass@k metrics. Use when benchmarking code models, comparing coding abilities, testing multi-language support, or measuring code generation quality. Industry standard from BigCode Project used by HuggingFace leaderboards. | 64 64 Impact — No eval scenarios have been run Securityby Low Low-risk findings worth noting Version: 3a6c3a9 |