verl-project/verl-omni - Open Source PR Review Scorecard

Multimodal RL training framework for diffusion & omni models

C-Rank Grade: A (Welcoming) - 64/100

External PR Merge Rate: 74%

Response Time: 2d

First Timer Success: 68%

Frequently Asked Questions

Is verl-project/verl-omni welcoming to first-time open-source contributors?

verl-project/verl-omni has a recorded first-timer success rate of 68.0%. Repositories ranked A typically provide actionable feedback during code reviews and actively nurture new community contributors.

How fast can I expect code review feedback on my pull request?

Maintainers in verl-project/verl-omni respond to incoming external pull requests in approximately 51.7 hours on average. Keeping PRs focused on single tasks and ensuring tests pass helps maintainers review faster.

What does the 64.0 C-Rank™ score (A Tier) represent?

The C-Rank™ system evaluates GitHub projects on a 0–100 scale using real data: PR merge rates, review turnaround time, active maintainer presence, and first-time contributor success. A score of 64.0 places verl-project/verl-omni in the A tier.

What is the external contributor pull request merge rate for verl-project/verl-omni?

The external contributor pull request merge rate for verl-project/verl-omni is 73.7%, based on public PR activity from non-core contributors.

Are there Good First Issues available in verl-project/verl-omni?

verl-project/verl-omni currently has 18 active issue(s) tagged with beginner-friendly labels like "good first issue", "beginner", or "up-for-grabs".

verl-project
verl-project/verl-omniAWelcoming873
GitHub
Back to Explorer
verl-project

verl-project/verl-omni

873
AWelcoming(64/100)Python

Multimodal RL training framework for diffusion & omni models

Compare
Jump to:

AI Maintainer Review Guidelines

Review Persona

Welcoming Community Builder

Warmth Score
9.2/10
Patience Score
9.0/10
Nitpick Rate
25%

Highly welcoming maintainers in verl-project/verl-omni. Prompt code reviews with positive guidance for new contributors.

Top PR Submission Do's

  • Ensure code complies with the project coding style
  • Keep PRs scoped to a single concern
  • Include context and link to the related issue

Top PR Friction Pitfalls (Don'ts)

  • Do not submit PRs without linking an issue
  • Do not break existing tests without fixing them
  • Do not mix unrelated refactors in a single PR
Response Velocity
2 days+
Standard maintainer review cycle

Average Response Latency

Tracks hours until a maintainer leaves a review, comment, or PR response.

Merge Efficiency
73.7%
Moderate PR acceptance rate

External Acceptance Rate

Percentage of community pull requests successfully merged into main.

First-Timer Success
68.0%
Strong first-timer PR acceptance rate

First PR Conversion

Rate at which developers submitting their first repository PR succeed.

Active Maintainers
42 core
Highly collaborative maintainer core
Diagnostic Health HUD
73.7%
Merge Gauge
68.0%
1st-Timer
Community Vibe50/100

Embed C-Rank Badge

Show contributors that your repository actively reviews and merges external pull requests.

GetMerged C-Rank badge for verl-project/verl-omni
[![GetMerged C-Rank](https://getmerged.abhishekco.de/api/badge/verl-project/verl-omni)](https://getmerged.abhishekco.de/verl-project/verl-omni?utm_source=github&utm_medium=badge)

Active Good First Issues (5)

View on GitHub

1. Motivation Qwen3-Omni Thinker is already a first-class omni policy in verl-omni. The README currently lists DPO and GSPO as the supported algorithms. DAPO (Decoupled Clip and Dynamic sAmpling Policy Optimization) is the production-scale GRPO-family recipe in upstream verl for long-CoT / math RL: clip-higher, token-level policy gradient, overlong reward shaping, and dynamic sampling. There is no Thinker DAPO recipe today. The GSPO V1 launcher (examples/gspo_trainer/qwen3_omni/run_qwen3_omni_thinker_gspo_lora_v1.sh) is a sequence-level GSPO setup (policy_loss.loss_mode=gspo, clip_ratio_{low,high}=3e-4/4e-4, loss_agg_mode=seq-mean-token-mean, reward.reward_manager.name=naive). The legacy GSPO YAML sets reward.reward_manager.name=dapo, which only selects the DAPO reward manager (overlong buffer / math parsing). That is not the DAPO algorithm. Supporting DAPO on Thinker is useful because: Users already ask for it as the default long-horizon RL recipe on Qwen3-class models. The Thinker a

📅 Opened Aug 25, 2026💬 1 comment
Quality: 70/100Contribute

Motivation verl-omni sits on top of verl / vllm-omni / diffusers / transformers / peft and carries temporary patches. Each has one of three fates: drop after rebase/bump (fixed upstream; our pin or version floor predates the fix), drop now (fix already inside our pins; for one item, P3, that means an in-pin rewrite rather than a delete), or blocked on upstream (needs a fix we can only suggest — see Tracker §3). Critically, some things that look like patches are intended adaptations — code that exists because verl-omni trains diffusion/omni models that upstream deliberately doesn't cover, and which would survive a perfect upstream (Part II). Mixing those into patch debt produces wrong drop plans, so this ledger separates them. Current tally: 16 patch-debt line items (Part I: 3 immediate, 3 gated on the diffusers bump, 3 on pin rebases, 7 blocked on upstream) · 13 intended adaptations (Part II) · 2 false positives removed from earlier drafts (Part II record). The tracker adds 8 no

📅 Opened Aug 25, 2026💬 1 comment
Quality: 65/100Contribute

Feature request This is a tracking issue for migrating remaining verl-omni models and algorithms onto the verl v1 trainer (TransferQueue + ReplayBuffer), and for proving that each migrated path is performance-competitive and behavior-compatible with the current v0 recipes. It does not redesign the v1 trainer. Architecture RFCs already exist: Area RFC Status Diffusion v1 trainer (sync / separate_async) #249 Done in #296, #315 Omni model base + v1 sync trainer #232 Done in #253, #258, #312 Omni v1 colocate_async / separate_async #320 In progress (#337, #380) Please attach the corresponding PR in the tables below when you start or land a (model, algorithm, mode) path. Keep this issue as the single dashboard. Motivation v1 is the long-term trainer control plane (aligned with upstream verl): TransferQueue, ReplayBuffer, agent-loop workers, and sync / colocate_async / separate_async modes. Today the architecture is in, but recipe coverage is still narrow. Most production exampl

📅 Opened Aug 14, 2026💬 4 comments
Quality: 90/100Contribute

1. Summary Silent fallbacks hide misconfigurations and corrupt data behind "reasonable" defaults. Because RL training only reveals such bugs as abnormal metric curves hours into a run, they are the worst failure mode in this codebase. This RFC proposes the opposite policy: misconfigurations and corrupt data raise immediately with actionable errors. Fallbacks remain only for legitimate cases: optional dependencies when the user left a value unset, explicitly declared optional features, and transient stochastic anomalies — which get visible counters and abort thresholds instead of silence. The policy follows upstream verl's fail-fast design (Section 3), and verl-omni already applies it in several places (Section 2) — this RFC makes it consistent everywhere. 2. Policy Explicit user intent is sacred. If a config value was explicitly set and cannot be honored, raise — explain what was requested, why it fails, and what to change. Unknown values raise. Any enum-like value (arch, algori

📅 Opened Aug 14, 2026💬 4 comments
Quality: 90/100Contribute

1. Summary Generated videos are currently transferred between workers as raw 5-D [B, T, C, H, W] float32 pixel tensors, pickled in full on every Ray hop. This RFC proposes a staged package to cut memory residency and transfer time without changing the reward function or the training objective: Stop shipping pixels to workers that never read them (actor / ref / old-log-prob hops) — ~90% cut on the biggest hop. Use uint8 instead of float32 pixels on the reward/eval hop — 4× with bit-exact scores for current re-encoding scorers. Enable the existing zero-copy serialization path — removes per-hop pickle churn. 2. Motivation Per-sample payloads are large and are copied more often than necessary: One 8s @ 24fps 512×512 video is ~604 MB as float32 RGB (3 × 192 × 512 × 512 × 4 B). A batch of 8 is ~4.8 GB. Measured anchors: verl multimodal DataProto via Ray object store transfers at an effective 0.0302 GB/s (verl RFC #2847). Ray's docs measure a 1 GiB tensor sum at 23.5 s pickled

📅 Opened Aug 13, 2026💬 3 comments
Quality: 90/100Contribute
Looking for more Python beginner tasks?Explore Python GFI

Contributor Community Vibe Feedback

Rate what actually matters after opening a pull request here.

Have you contributed to this repo?

Rate your first-hand PR experience (review speed, maintainer responsiveness, and onboarding ease) to help other contributors.

3 ratings required
Maintainer helpfulness
Review speed
Beginner friendliness

Contributor Compatibility & Review Speed Analysis for verl-project/verl-omni

When evaluating whether to contribute to verl-project/verl-omni, response velocity and maintainer engagement are crucial. GetMerged continuously tracks pull request trajectories, first-comment latency, and code review rounds to help developers avoid submitting pull requests to backlogged repositories.

Currently, maintainers of verl-project/verl-omni acknowledge new external contributions in approximately 2 days+. Out of all submitted pull requests from non-core authors in the last 180-day window, 73.7% were successfully merged into the primary branch.

Frequently Asked Questions - Contributing to verl-project/verl-omni

01

Is verl-project/verl-omni welcoming to first-time open-source contributors?

verl-project/verl-omni has a recorded first-timer success rate of 68.0%. Repositories ranked Welcoming typically provide actionable feedback during code reviews and actively nurture new community contributors.

02

How fast can I expect code review feedback on my pull request?

The initial maintainer response time averages ~2 days+. Keeping PRs scoped to single concerns and ensuring CI checks succeed will optimize review turnaround.

03

What does the 64.0 C-Rank™ score represent?

The C-Rank™ index scores repositories on a 0 to 100 scale using an objective formula: external PR merge rates, initial response speed, active maintainer count, and first-time contributor retention. A score of 64.0 places verl-project/verl-omni in the Welcoming tier.

04

What is the external contributor pull request merge rate for verl-project/verl-omni?

The external pull request merge rate is 73.7%. GetMerged isolates non-core community contributions so external developers get an accurate benchmark of PR acceptance probability.

05

Are there beginner Good First Issues open in verl-project/verl-omni?

Yes, verl-project/verl-omni currently has 18 active issue(s) tagged with beginner-friendly labels. You can inspect these directly from the repository issues tab.

GetMerged C-Rank™ Indexing Standard

All metrics displayed for verl-project/verl-omni are automatically retrieved via the public GitHub API and recalculated daily. Insider pull requests submitted by repository owners or organization members are excluded from merge rate calculations to preserve objective external contributor statistics.