For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
DocumentationAPI Reference
DocumentationAPI Reference
  • API Reference
    • Overview
        • Nemo Curator
          • Backends
          • Config
          • Core
          • Metrics
          • Models
          • Package Info
          • Pipeline
          • Stages
          • Tasks
            • Audio Task
            • Document
            • File Group
            • Image
            • Interleaved
            • Tasks
            • Utils
            • Video
          • Utils
    • Pipeline
    • ProcessingStage
    • CompositeStage
    • Resources
NVIDIANVIDIA
Developer-friendly docs for your API
Privacy Policy | Your Privacy Choices | Terms of Service | Accessibility | Corporate Policies | Product Security | Contact

Copyright © 2026, NVIDIA Corporation.

LogoLogoNeMo Curator
On this page
  • Module Contents
  • Classes
  • API
API ReferenceFull Library ReferenceNemo CuratorNemo CuratorTasks

nemo_curator.tasks.file_group

||View as Markdown|
Previous

nemo_curator.tasks.document

Next

nemo_curator.tasks.image

Module Contents

Classes

NameDescription
FileGroupTaskTask representing a group of files to be read.

API

class nemo_curator.tasks.file_group.FileGroupTask(
task_id: str,
dataset_name: str,
data: list[str] = list(),
_stage_perf: list[nemo_curator.utils.performance_utils.StagePerfStats] = list(),
_metadata: dict[str, typing.Any] = dict(),
reader_config: dict[str, typing.Any] = dict()
)
Dataclass

Bases: Task[list[str]]

Task representing a group of files to be read. This is created during the planning phase and passed to reader stages.

data
list[str] = field(default_factory=list)
num_items
int

Number of files in this group.

reader_config
dict[str, Any] = field(default_factory=dict)
nemo_curator.tasks.file_group.FileGroupTask.validate() -> bool

Validate the task data.