Skip to content

refactor(examples): rename llm_ptq → hf_ptq (symlink for back-compat)#1759

Open
Edwardf0t1 wants to merge 1 commit into
mainfrom
rename-llm-ptq-to-hf-ptq
Open

refactor(examples): rename llm_ptq → hf_ptq (symlink for back-compat)#1759
Edwardf0t1 wants to merge 1 commit into
mainfrom
rename-llm-ptq-to-hf-ptq

Conversation

@Edwardf0t1

@Edwardf0t1 Edwardf0t1 commented Jun 17, 2026

Copy link
Copy Markdown
Contributor

What does this PR do?

Type of change: refactor / deprecation (examples)

Follow-up to #1705 (which consolidated examples/vlm_ptq into examples/llm_ptq). Since that example now covers Hugging Face LLM and VLM PTQ, the llm_ptq name is a misnomer. This renames the directory to examples/hf_ptq and leaves a relative symlink examples/llm_ptq → hf_ptq so existing paths/commands keep working during a deprecation window.

Requested by @kevalmorabia97 on #1705 (with the symlink-for-back-compat approach), targeted for the same 0.46 release as the consolidation.

Changes

  • git mv examples/llm_ptq → examples/hf_ptq and tests/examples/llm_ptq → tests/examples/hf_ptq (the CI runner maps the matrix name to both examples/<name> and tests/examples/<name>).
  • Add a tracked back-compat symlink examples/llm_ptq → hf_ptq.
  • Update CI matrices and all repo path references (docs, READMEs, agent skills, launcher/debugger tools, tests) from llm_ptq to hf_ptq.
  • Keep Python identifiers / test-util module names (run_llm_ptq_command, llm_ptq_utils) — they name the LLM-PTQ task, not the directory.
  • Preserve the CODEOWNERS team slug (modelopt-examples-llm_ptq-codeowners) and historical CHANGELOG entries; add a CHANGELOG deprecation note.

Back-compat caveats (inherent to git directory symlinks)

  • ✅ Linux/macOS CLI usage and Python cwd/pytest resolution work through the symlink.
  • ⚠️ Windows git checkouts don't materialize symlinks by default (low impact — this example is Linux-only in practice).
  • ⚠️ GitHub web doesn't follow directory symlinks, so legacy external deep-links to examples/llm_ptq/... won't navigate in. All internal references are repointed to hf_ptq, so the symlink is only for legacy external/CLI use.

Usage (unchanged via symlink)

# New canonical path
cd examples/hf_ptq
scripts/huggingface_example.sh --model <hf_model> --quant fp8

# Old path still works (forwards via symlink)
cd examples/llm_ptq && scripts/huggingface_example.sh --model <hf_model> --quant fp8

Testing

  • bash -n on moved/edited shell scripts (new path + via symlink).
  • py_compile on moved/edited Python; test re-export shim repointed to examples/hf_ptq/example_utils.
  • Verified git tracks examples/llm_ptq as a single symlink (mode 120000), not a duplicated tree (no pre-commit / pytest double-processing).
  • pre-commit run on all changed files passes.

Before your PR is "Ready for review"

  • Is this change backward compatible?: ✅ (relative symlink keeps examples/llm_ptq paths valid; see caveats above)
  • Did you write any new necessary tests?: N/A (pure rename; existing tests moved with the dir)
  • Did you update Changelog?: ✅

Additional Information

Follow-up (later release): remove the examples/llm_ptq symlink once external references have migrated.

🤖 Generated with Claude Code

Summary by CodeRabbit

Release Notes

  • Deprecations

    • Consolidated post-training quantization examples under unified HuggingFace-focused structure. Vision-language model quantization now uses the --vlm flag within the main PTQ workflow. Legacy paths remain accessible via symlink for backward compatibility but will be removed in future releases.
  • Documentation

    • Updated all guides and references to reflect new quantization example locations and consolidated workflow documentation.

The example covers Hugging Face LLM and VLM PTQ, so "llm_ptq" is a misnomer
since the vlm_ptq consolidation. Rename the directory to examples/hf_ptq and
leave a relative symlink examples/llm_ptq -> hf_ptq so existing paths and
commands keep working through a deprecation window.

- git mv examples/llm_ptq -> examples/hf_ptq and
  tests/examples/llm_ptq -> tests/examples/hf_ptq (CI maps the matrix name to
  both examples/<name> and tests/examples/<name>).
- Add back-compat symlink examples/llm_ptq -> hf_ptq (tracked as a symlink).
- Update CI matrices and all repo path references (docs, READMEs, skills,
  launcher/debugger tools, tests) from llm_ptq to hf_ptq. Python identifiers
  and test-util module names (run_llm_ptq_command, llm_ptq_utils) are kept.
- Preserve the CODEOWNERS team slug and historical CHANGELOG entries; add a
  CHANGELOG deprecation note for the rename.

Follow-up to the examples/vlm_ptq -> examples/llm_ptq consolidation (#1705),
targeted for the same 0.46 release.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Signed-off-by: Zhiyu Cheng <zhiyuc@nvidia.com>
@coderabbitai

coderabbitai Bot commented Jun 17, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

📝 Walkthrough

Walkthrough

Renames the PTQ example directory from examples/llm_ptq to examples/hf_ptq, adds a backward-compatibility symlink at examples/llm_ptq → hf_ptq, and consolidates examples/vlm_ptq into examples/hf_ptq (using --vlm flag). All references across documentation, CI workflows, agent skills, launcher tools, and tests are updated accordingly.

Changes

llm_ptq → hf_ptq Rename and vlm_ptq Consolidation

Layer / File(s) Summary
Symlink, CODEOWNERS, CHANGELOG, and vlm_ptq deprecation
examples/llm_ptq, .github/CODEOWNERS, CHANGELOG.rst, examples/vlm_ptq/README.md, examples/vlm_ptq/scripts/huggingface_example.sh, examples/hf_ptq/fsdp2.yaml
Creates examples/llm_ptq as a symlink to hf_ptq. Updates CODEOWNERS path. Records the rename and consolidation of vlm_ptq in CHANGELOG. Marks vlm_ptq README as deprecated and retargets the VLM shim script to forward to examples/hf_ptq/scripts/huggingface_example.sh.
CI workflow updates
.github/workflows/example_tests.yml, .github/workflows/_example_tests_runner.yml
Updates trtllm-pr and trtllm-non-pr job matrices to test hf_ptq instead of llm_ptq. Updates the runner workflow input description string.
Launcher and debugger tool scripts
tools/launcher/common/eagle3/hf_ptq.sh, tools/launcher/common/hf/ptq.sh, tools/launcher/examples/Qwen/Qwen3-8B/hf_ptq.yaml, tools/debugger/CLAUDE.md, tools/debugger/README.md
Retargets HF_EXAMPLE and launcher Python entrypoints from llm_ptq to hf_ptq. Updates debugger documentation command examples.
Agent skill documentation
.agents/skills/common/environment-setup.md, .agents/skills/deployment/references/support-matrix.md, .agents/skills/ptq/SKILL.md, .agents/skills/ptq/references/slurm-setup-ptq.md, .agents/skills/ptq/references/unsupported-models.md
Updates all agent skill Markdown files: source detection check, support matrix references, SLURM multi-node command templates, and unsupported-models guide links to use hf_ptq.
README, docs/source, and example documentation
README.md, docs/source/..., examples/deepseek/..., examples/gpt-oss/README.md, examples/llm_eval/README.md, examples/llm_qat/..., examples/model_hub/README.md, examples/pruning/..., examples/speculative_decoding/README.md, examples/vllm_serve/README.md, examples/megatron_bridge/quantize.py, modelopt/recipe/presets.py, modelopt/torch/quantization/utils/numeric_utils.py
Updates all documentation links, news entries, support matrix tables, RST guides, notebook instructions, and module docstrings to reference examples/hf_ptq instead of examples/llm_ptq.
Test utility and GPU test path constants
tests/_test_utils/examples/llm_ptq_example_utils.py, tests/_test_utils/examples/run_command.py, tests/examples/hf_ptq/test_cast_mxfp4_to_nvfp4.py, tests/examples/hf_ptq/test_example_utils.py, tests/examples/hf_ptq/test_hf_ptq_args.py, tests/examples/speculative_decoding/test_eagle_offline_ptq.py, tests/gpu/torch/export/test_unified_hf_export_and_check_safetensors.py, tests/gpu/torch/quantization/test_gpt_oss_mxfp4_nvfp4_cast_cuda.py
Updates _LLM_PTQ_DIR, _EXAMPLES_DIR path constants and run_example_command call sites to target examples/hf_ptq for dynamic imports and test execution.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Possibly related PRs

  • NVIDIA/Model-Optimizer#1705: Modifies the same examples/vlm_ptq/scripts/huggingface_example.sh shim to forward with --vlm to llm_ptq; this PR retargets that same shim to hf_ptq.

Suggested reviewers

  • cjluo-nv
  • jenchen13
  • chadvoegele
  • mxinO
🚥 Pre-merge checks | ✅ 5 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 50.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately and concisely summarizes the main change: renaming examples/llm_ptq to examples/hf_ptq with a symlink for backward compatibility.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Security Anti-Patterns ✅ Passed PR is a rename refactor (llm_ptq→hf_ptq) with no security anti-patterns. All Python code changes involve documentation updates or path references only. No hardcoded trust_remote_code=True, unsafe t...

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch rename-llm-ptq-to-hf-ptq

Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions

Copy link
Copy Markdown
Contributor
PR Preview Action v1.8.1

QR code for preview link

🚀 View preview at
https://NVIDIA.github.io/Model-Optimizer/pr-preview/pr-1759/

Built to branch gh-pages at 2026-06-17 01:29 UTC.
Preview will be ready when the GitHub Pages deployment is complete.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Warning

CodeRabbit couldn't request changes on this pull request because it doesn't have sufficient GitHub permissions.

Please grant CodeRabbit Pull requests: Read and write permission and re-run the review.

👉 Steps to fix this

Actionable comments posted: 2

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
.agents/skills/ptq/SKILL.md (1)

108-108: ⚠️ Potential issue | 🟡 Minor

Correct the launcher script path to match the actual template location.

Line 108 references common/hf_ptq/hf_ptq.sh, which does not exist. The correct path is common/hf/ptq.sh, as documented in the launcher guide itself. Replace common/hf_ptq/hf_ptq.sh with common/hf/ptq.sh.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.agents/skills/ptq/SKILL.md at line 108, The launcher script path referenced
in the SKILL.md file is incorrect. Locate the reference to
`common/hf_ptq/hf_ptq.sh` on line 108 and replace it with the correct path
`common/hf/ptq.sh` to match the actual template location documented in the
launcher guide.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In @.agents/skills/ptq/references/unsupported-models.md:
- Line 150: In the unsupported-models.md file, replace the broken documentation
link `examples/hf_ptq/moe.md` with the correct path `examples/hf_ptq/README.md`.
The README file contains the actual MoE quantization documentation that should
be referenced instead of the non-existent moe.md file.

In `@README.md`:
- Line 33: The README.md file contains anchor links pointing to sections in
examples/hf_ptq/README.md that do not exist as markdown headings. To fix this,
either add the missing sections (`#llama-4`,
`#model-quantization-and-trt-llm-conversion`, and
`#deploy-fp8-quantized-model-using-vllm`) as properly formatted markdown headings
in examples/hf_ptq/README.md, or update the links in the main README to
reference only the existing anchors (`#support-matrix` and
`#hugging-face-supported-models`). Choose the approach that best maintains the
documentation structure and user experience.

---

Outside diff comments:
In @.agents/skills/ptq/SKILL.md:
- Line 108: The launcher script path referenced in the SKILL.md file is
incorrect. Locate the reference to `common/hf_ptq/hf_ptq.sh` on line 108 and
replace it with the correct path `common/hf/ptq.sh` to match the actual template
location documented in the launcher guide.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 36b1e7eb-b9ba-4047-a71d-d2be1dedff6f

📥 Commits

Reviewing files that changed from the base of the PR and between 6c32c37 and d182e62.

📒 Files selected for processing (65)
  • .agents/skills/common/environment-setup.md
  • .agents/skills/deployment/references/support-matrix.md
  • .agents/skills/ptq/SKILL.md
  • .agents/skills/ptq/references/slurm-setup-ptq.md
  • .agents/skills/ptq/references/unsupported-models.md
  • .github/CODEOWNERS
  • .github/workflows/_example_tests_runner.yml
  • .github/workflows/example_tests.yml
  • CHANGELOG.rst
  • README.md
  • docs/source/deployment/3_unified_hf.rst
  • docs/source/guides/10_recipes.rst
  • docs/source/guides/_compress_quantized_models.rst
  • docs/source/guides/_customized_model_quantization.rst
  • docs/source/index.rst
  • examples/deepseek/README.md
  • examples/deepseek/deepseek_v4/quantize_to_nvfp4.py
  • examples/gpt-oss/README.md
  • examples/hf_ptq/.gitignore
  • examples/hf_ptq/README.md
  • examples/hf_ptq/cast_mxfp4_to_nvfp4.py
  • examples/hf_ptq/example_utils.py
  • examples/hf_ptq/fsdp2.yaml
  • examples/hf_ptq/hf_ptq.py
  • examples/hf_ptq/multinode_ptq.py
  • examples/hf_ptq/nemotron_vl_calib.py
  • examples/hf_ptq/notebooks/1_FP4-FP8_PTQ_Min-Max_Calibration.ipynb
  • examples/hf_ptq/notebooks/2_PTQ_AWQ_Calibration.ipynb
  • examples/hf_ptq/notebooks/3_PTQ_AutoQuantization.ipynb
  • examples/hf_ptq/requirements.txt
  • examples/hf_ptq/run_tensorrt_llm.py
  • examples/hf_ptq/scripts/huggingface_example.sh
  • examples/hf_ptq/scripts/parser.sh
  • examples/hf_ptq/vlm_utils.py
  • examples/llm_eval/README.md
  • examples/llm_ptq
  • examples/llm_qat/README.md
  • examples/llm_qat/llama_factory/README.md
  • examples/llm_qat/notebooks/QAT_QAD_Walkthrough.ipynb
  • examples/megatron_bridge/quantize.py
  • examples/model_hub/README.md
  • examples/pruning/minitron/NVIDIA-Nemotron-Nano-9B-v2/README.md
  • examples/speculative_decoding/README.md
  • examples/vllm_serve/README.md
  • examples/vlm_ptq/README.md
  • examples/vlm_ptq/scripts/huggingface_example.sh
  • modelopt/recipe/presets.py
  • modelopt/torch/quantization/utils/numeric_utils.py
  • tests/_test_utils/examples/llm_ptq_example_utils.py
  • tests/_test_utils/examples/run_command.py
  • tests/examples/hf_ptq/_extensions/test_torch_extensions.py
  • tests/examples/hf_ptq/test_cast_mxfp4_to_nvfp4.py
  • tests/examples/hf_ptq/test_deploy.py
  • tests/examples/hf_ptq/test_example_utils.py
  • tests/examples/hf_ptq/test_hf_ptq_args.py
  • tests/examples/hf_ptq/test_llm_ptq.py
  • tests/examples/hf_ptq/test_vlm_ptq.py
  • tests/examples/speculative_decoding/test_eagle_offline_ptq.py
  • tests/gpu/torch/export/test_unified_hf_export_and_check_safetensors.py
  • tests/gpu/torch/quantization/test_gpt_oss_mxfp4_nvfp4_cast_cuda.py
  • tools/debugger/CLAUDE.md
  • tools/debugger/README.md
  • tools/launcher/common/eagle3/hf_ptq.sh
  • tools/launcher/common/hf/ptq.sh
  • tools/launcher/examples/Qwen/Qwen3-8B/hf_ptq.yaml

| Fused weights + `forward(x, expert_id)` | Expand + reconstruct on export | `_QuantMoELinear` (Step3.5) |

For the full guide, see `examples/llm_ptq/moe.md`.
For the full guide, see `examples/hf_ptq/moe.md`.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check if the moe.md file exists
ls -la examples/hf_ptq/moe.md 2>&1

Repository: NVIDIA/Model-Optimizer

Length of output: 136


🏁 Script executed:

#!/bin/bash

# Check if the examples/hf_ptq directory exists
echo "=== Checking if examples/hf_ptq directory exists ==="
ls -la examples/hf_ptq 2>&1 || echo "Directory does not exist"

# Search for any moe.md file in the repository
echo -e "\n=== Searching for moe.md files in repository ==="
find . -name "*moe.md" -type f 2>/dev/null

# Check if there are any similar documentation files in examples directory
echo -e "\n=== Files in examples directory (if it exists) ==="
find examples -type f -name "*.md" 2>/dev/null | head -20

Repository: NVIDIA/Model-Optimizer

Length of output: 1834


🏁 Script executed:

#!/bin/bash

# Check the context around line 150 in the unsupported-models.md file
echo "=== Content around line 150 in unsupported-models.md ==="
sed -n '145,155p' .agents/skills/ptq/references/unsupported-models.md

# Check if hf_ptq/README.md contains MoE information
echo -e "\n=== Checking hf_ptq/README.md for MoE content ==="
grep -i "moe\|mixture" examples/hf_ptq/README.md | head -10

# List all files in hf_ptq directory to see what's available
echo -e "\n=== All files in examples/hf_ptq ==="
ls -1 examples/hf_ptq/

Repository: NVIDIA/Model-Optimizer

Length of output: 3168


Fix broken documentation link: examples/hf_ptq/moe.md does not exist.

The file examples/hf_ptq/moe.md referenced on line 150 is not present in the repository. The MoE handling guide is in examples/hf_ptq/README.md, which contains comprehensive documentation on MoE quantization strategies, expert layer handling, and supported MoE models. Update the link accordingly.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.agents/skills/ptq/references/unsupported-models.md at line 150, In the
unsupported-models.md file, replace the broken documentation link
`examples/hf_ptq/moe.md` with the correct path `examples/hf_ptq/README.md`. The
README file contains the actual MoE quantization documentation that should be
referenced instead of the non-existent moe.md file.

Comment thread README.md
- [2026/04/15] Customer story: [Domyn compresses Colosseum-355B → 260B using ModelOpt's Minitron pruning + distillation](https://www.domyn.com/blog/domyn-large-the-journey-of-a-european-sovereign-ai-model-for-regulated-industries)
- [2026/03/17] Customer story: [Bielik.AI builds Bielik Minitron 7B (33% smaller, 50% faster, 90% quality retained) using ModelOpt's Minitron pruning + distillation](https://bielik.ai/en/nvidia-gtc-bielik-minitron-premiere/)
- [2026/03/11] Model Optimizer quantized Nemotron-3-Super checkpoints are available on Hugging Face for download: [FP8](https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-FP8), [NVFP4](https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4). Learn more in the [Nemotron 3 Super release blog](https://blogs.nvidia.com/blog/nemotron-3-super-agentic-ai/). Check out how to quantize Nemotron 3 models for deployment acceleration [here](./examples/llm_ptq/README.md)
- [2026/03/11] Model Optimizer quantized Nemotron-3-Super checkpoints are available on Hugging Face for download: [FP8](https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-FP8), [NVFP4](https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4). Learn more in the [Nemotron 3 Super release blog](https://blogs.nvidia.com/blog/nemotron-3-super-agentic-ai/). Check out how to quantize Nemotron 3 models for deployment acceleration [here](./examples/hf_ptq/README.md)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check if the hf_ptq README exists and contains expected sections
if [ -f examples/hf_ptq/README.md ]; then
  echo "=== Checking for expected anchors in examples/hf_ptq/README.md ==="
  grep -E '(llama-4|model-quantization|deploy-fp8|support-matrix|hugging-face-supported)' examples/hf_ptq/README.md || echo "WARNING: Some expected section headings may be missing"
else
  echo "ERROR: examples/hf_ptq/README.md does not exist"
fi

Repository: NVIDIA/Model-Optimizer

Length of output: 728


🏁 Script executed:

#!/bin/bash
# Check file existence and examine markdown headings
if [ -f examples/hf_ptq/README.md ]; then
  echo "=== File exists. Getting size ==="
  wc -l examples/hf_ptq/README.md
  
  echo -e "\n=== Searching for markdown headings (##) ==="
  grep -n "^##" examples/hf_ptq/README.md | head -20
  
  echo -e "\n=== Searching for specific anchor text patterns ==="
  grep -in -E "(llama|quantization.*trt|deploy.*fp8|support.*matrix|hugging.*face)" examples/hf_ptq/README.md | head -30
else
  echo "File does not exist"
fi

Repository: NVIDIA/Model-Optimizer

Length of output: 5799


Fix broken anchor links: three referenced sections do not exist in examples/hf_ptq/README.md.

The following anchors are referenced in the main README links but do not exist as markdown headings in examples/hf_ptq/README.md:

  • #llama-4 — no heading found (LLAMA 4 appears only as a table row)
  • #model-quantization-and-trt-llm-conversion — no heading found
  • #deploy-fp8-quantized-model-using-vllm — no heading found

Only #support-matrix (line 96) and #hugging-face-supported-models (line 98) exist.

Either add the missing sections as markdown headings to examples/hf_ptq/README.md, or update the links in the main README to point to existing anchors.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@README.md` at line 33, The README.md file contains anchor links pointing to
sections in examples/hf_ptq/README.md that do not exist as markdown headings. To
fix this, either add the missing sections (`#llama-4`,
`#model-quantization-and-trt-llm-conversion`, and
`#deploy-fp8-quantized-model-using-vllm`) as properly formatted markdown headings
in examples/hf_ptq/README.md, or update the links in the main README to
reference only the existing anchors (`#support-matrix` and
`#hugging-face-supported-models`). Choose the approach that best maintains the
documentation structure and user experience.

@codecov

codecov Bot commented Jun 17, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 76.65%. Comparing base (977d34d) to head (d182e62).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1759      +/-   ##
==========================================
+ Coverage   74.29%   76.65%   +2.36%     
==========================================
  Files         511      511              
  Lines       56356    56356              
==========================================
+ Hits        41868    43200    +1332     
+ Misses      14488    13156    -1332     
Flag Coverage Δ
examples 41.80% <ø> (-0.13%) ⬇️
gpu 57.91% <ø> (+7.68%) ⬆️
regression 14.70% <ø> (+0.06%) ⬆️
unit 54.34% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant