Orchestra-Research

60 mods across 2 repositories, 12k stars between them.

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Provides guidance for PyTorch-native agentic RL using torchforge, Meta's library separating infra from algorithms. Use when you want clean RL abstractions, easy algorithm experimentation, or scalable training with Monarch and TorchTitan.

12k +30 2mo ago A 49 tokens original MIT

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Fine-tune LLMs using reinforcement learning with TRL - SFT for instruction tuning, DPO for preference alignment, PPO/GRPO for reward optimization, and reward model training. Use when need RLHF, align model with preferences, or train from human feedback. Works with HuggingFace Transformers.

12k +30 2mo ago A 69 tokens original MIT

verl-rl-training

27

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Provides guidance for training LLMs with reinforcement learning using verl (Volcano Engine RL). Use when implementing RLHF, GRPO, PPO, or other RL algorithms for LLM post-training at scale with flexible infrastructure backends.

12k +30 2mo ago A 51 tokens original MIT

constitutional-ai

28

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Anthropic's method for training harmless AI through self-improvement. Two-phase approach - supervised learning with self-critique/revision, then RLAIF (RL from AI Feedback). Use for safety alignment, reducing harmful outputs without human labels. Powers Claude's safety system.

12k +30 2mo ago A 58 tokens original MIT

llamaguard

29

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Meta's 7-8B specialized moderation model for LLM input/output filtering. 6 safety categories - violence/hate, sexual content, weapons, substances, self-harm, criminal planning. 94-95% accuracy. Deploy with vLLM, HuggingFace, Sagemaker. Integrates with NeMo Guardrails.

12k +30 2mo ago A 74 tokens original MIT

nemo-guardrails

30

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

NVIDIA's runtime safety framework for LLM applications. Features jailbreak detection, input/output validation, fact-checking, hallucination detection, PII filtering, toxicity detection. Uses Colang 2.0 DSL for programmable rails. Production-ready, runs on T4 GPU.

12k +30 2mo ago B 61 tokens original MIT

prompt-guard

31

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Meta's 86M prompt injection and jailbreak detector. Filters malicious prompts and third-party data for LLM apps. 99%+ TPR, <1% FPR. Fast (<2ms GPU). Multilingual (8 languages). Deploy with HuggingFace or batch processing for RAG security.

12k +30 2mo ago B 65 tokens original MIT

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Simplest distributed training API. 4 lines to add distributed support to any PyTorch script. Unified API for DeepSpeed/FSDP/Megatron/DDP. Automatic device placement, mixed precision (FP16/BF16/FP8). Interactive config, single launch command. HuggingFace ecosystem standard.

12k +30 2mo ago A 69 tokens original MIT

deepspeed

33

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Expert guidance for distributed training with DeepSpeed - ZeRO optimization stages, pipeline parallelism, FP16/BF16/FP8, 1-bit Adam, sparse attention.

12k +30 2mo ago B 38 tokens original MIT

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

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…

12k +30 2mo ago A 82 tokens original MIT

pytorch-fsdp2

35

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Adds PyTorch FSDP2 (fullyshard) to training scripts with correct init, sharding, mixed precision/offload config, and distributed checkpointing. Use when models exceed single-GPU memory or when you need DTensor-based sharding with DeviceMesh.

12k +30 2mo ago A 61 tokens original MIT

pytorch-lightning

36

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

High-level PyTorch framework with Trainer class, automatic distributed training (DDP/FSDP/DeepSpeed), callbacks system, and minimal boilerplate. Scales from laptop to supercomputer with same code. Use when you want clean training loops with built-in best practices.

12k +30 2mo ago A 59 tokens original MIT

ray-train

37

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Distributed training orchestration across clusters. Scales PyTorch/TensorFlow/HuggingFace from laptop to 1000s of nodes. Built-in hyperparameter tuning with Ray Tune, fault tolerance, elastic scaling. Use when training massive models across multiple machines or running distributed hyperparameter sweeps.

12k +30 2mo ago A 63 tokens original MIT

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Reserved and on-demand GPU cloud instances for ML training and inference. Use when you need dedicated GPU instances with simple SSH access, persistent filesystems, or high-performance multi-node clusters for large-scale training.

12k +30 2mo ago C 47 tokens original MIT

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Serverless GPU cloud platform for running ML workloads. Use when you need on-demand GPU access without infrastructure management, deploying ML models as APIs, or running batch jobs with automatic scaling.

12k +30 2mo ago A 42 tokens original MIT

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Multi-cloud orchestration for ML workloads with automatic cost optimization. Use when you need to run training or batch jobs across multiple clouds, leverage spot instances with auto-recovery, or optimize GPU costs across providers.

12k +30 2mo ago A 51 tokens original MIT

awq-quantization

41

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Activation-aware weight quantization for 4-bit LLM compression with 3x speedup and minimal accuracy loss. Use when deploying large models (7B-70B) on limited GPU memory, when you need faster inference than GPTQ with better accuracy preservation, or for instruction-tuned and multimodal models. MLSys 2024 Best Paper…

12k +30 2mo ago A 79 tokens original MIT

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

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.

12k +30 2mo ago A 83 tokens original MIT

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

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…

12k +30 2mo ago A 78 tokens original MIT

gguf-quantization

44

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

GGUF format and llama.cpp quantization for efficient CPU/GPU inference. Use when deploying models on consumer hardware, Apple Silicon, or when needing flexible quantization from 2-8 bit without GPU requirements.

12k +30 2mo ago A 48 tokens original MIT

gptq

45

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

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.

12k +30 2mo ago A 84 tokens original MIT

hqq-quantization

46

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

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.

12k +30 2mo ago A 58 tokens original MIT

ml-training-recipes

47

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

Battle-tested PyTorch training recipes for all domains — LLMs, vision, diffusion, medical imaging, protein/drug discovery, spatial omics, genomics. Covers training loops, optimizer selection (AdamW, Muon), LR scheduling, mixed precision, debugging, and systematic experimentation. Use when training or fine-tuning…

12k +30 2mo ago A 88 tokens original MIT

Orchestra-Research/AI-Research-SKILLs

Skill Claude CodeCodex

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.

12k +30 2mo ago A 68 tokens original MIT