Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions dfm/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# DFM - Diffusion Foundation Models

Main directory for diffusion model implementations and examples.
Empty file added dfm/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions dfm/src/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Source

Core implementations for diffusion models.
Empty file added dfm/src/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions dfm/src/common/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Common

Shared utilities, like data handling, pre-processing (EDM, Flow-Matching)
Empty file added dfm/src/common/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions dfm/src/common/data/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Data

Data loading and preprocessing utilities for diffusion models.
Empty file added dfm/src/common/data/__init__.py
Empty file.
4 changes: 4 additions & 0 deletions dfm/src/dtensor/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# DTensor Models

Models implemented using Dtensors (NeMo Automodel)

Empty file added dfm/src/dtensor/__init__.py
Empty file.
4 changes: 4 additions & 0 deletions dfm/src/dtensor/model/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Model

Core model implementations and architectures.

Empty file.
4 changes: 4 additions & 0 deletions dfm/src/megatron/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# MBridge

Megatron models including DiT and dLLM implementations.

Empty file added dfm/src/megatron/__init__.py
Empty file.
4 changes: 4 additions & 0 deletions dfm/src/megatron/base/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Base

Base classes and interfaces for Megatron models.

Empty file.
4 changes: 4 additions & 0 deletions dfm/src/megatron/model/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Model

Model implementations for DiT and dLLM architectures.

Empty file.
4 changes: 4 additions & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Examples

Training and inference examples for dtensor and megatron models

4 changes: 4 additions & 0 deletions examples/dtensor/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# DTensor Models (NeMo Automodel)

Examples using NeMo Automodel with distributed tensor parallelism.

4 changes: 4 additions & 0 deletions examples/dtensor/configs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Configs

Configuration files for various Wan model versions.

4 changes: 4 additions & 0 deletions examples/dtensor/scripts/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Scripts

Training scripts for pretraining and finetuning.

4 changes: 4 additions & 0 deletions examples/megatron/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Megatron Examples

Recipes and configuration overrides for megatron training.

4 changes: 4 additions & 0 deletions examples/megatron/override_configs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Override Configs

Parallelism configuration overrides for different CP/TP/SP sizes.

4 changes: 4 additions & 0 deletions examples/megatron/recipe/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Recipe

Training recipes for Wan2.1 pretraining, finetuning, and weight verification.

Loading