Dataset Viewer
The dataset could not be loaded because the splits use different data file formats, which is not supported. Read more about the splits configuration. Click for more details.
Couldn't infer the same data file format for all splits. Got {NamedSplit('train'): ('audiofolder', {}), NamedSplit('validation'): ('imagefolder', {}), NamedSplit('test'): (None, {})}
Error code:   FileFormatMismatchBetweenSplitsError

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

NeMo Framework Docker Container

Repository Overview

  • Megatron-Bridge (/opt/Megatron-Bridge/)
  • Megatron-LM (/opt/Megatron-Bridge/3rdparty/Megatron-LM/)
  • Evaluator (/opt/Evaluator/)
  • Export-Deploy (/opt/Export-Deploy/)
  • NeMo (/opt/NeMo/)
  • Run (/opt/Run/)

Installed Packged

Pip installed packages:

  • DeepEP
  • vLLM
  • TRT-LLM

Execute pip list to see full list of installed packages via pip.

Uv virtualenv installed packages (/opt/venv/)

  • TransformerEngine
  • nvidia-resiliency
  • TensorRT-Model-Optimizer

Execute uv pip list to see full list of installed packages. Packages installed in /opt/venv take precedence over pip installed packages.

See /opt/NeMo-FW/pyproject.toml for additonal uv configurations.


Development

Mounting and syncing local repository into the container

Local working directories can be mounted via docker run:

docker run -v <local-folder-path>:<container-folder-path> <container-image>

1 Overwrite existing directory

  1. Define the <container-folder-path> to correspond to the path defined in Repository Overview. (ie. /my-path/Megatron-Bridge/:/opt/Megatron-Bridge/)

  2. cd /opt/NeMo-FW and run uv sync --no-cache-dir --all-groups --inexact

  3. Local development directory is synced to run in the container

2 Mount directory to a different path

  1. Modify /opt/NeMo-FW/pyproject.toml sections tool.uv.sources and tool.uv; override-dependencies to reflect new path. (ie. "megatron-bridge" = { path = <container-folder-path>, editable = true })

  2. cd /opt/NeMo-FW and run uv sync --no-cache-dir --all-groups --inexact

  3. Local development directory is synced to run in the container

Downloads last month
38