Skip to content
Open
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
2 changes: 1 addition & 1 deletion .importlinter
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ containers=
layers =
generate
samplers : metrics
noise_schedulers | multi_diffusion | preconditioners | denoisers
noise_schedulers | multi_diffusion | preconditioners | guidance
utils

[importlinter:contract:physicsnemo-external-imports]
Expand Down
15 changes: 0 additions & 15 deletions physicsnemo/diffusion/denoisers/__init__.py

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,18 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import warnings
"""DPS (Diffusion Posterior Sampling) guidance for diffusion models."""

from physicsnemo.core.warnings import FutureFeatureWarning

warnings.warn(
"The 'physicsnemo.diffusion.denoisers.denoisers' module is a placeholder for "
"future functionality that will be implemented in an upcoming release.",
FutureFeatureWarning,
stacklevel=2,
from .dps_guidance import (
DataConsistencyDPSGuidance,
DPSDenoiser,
DPSGuidance,
ModelConsistencyDPSGuidance,
)

__all__ = [
"DPSGuidance",
"DPSDenoiser",
"ModelConsistencyDPSGuidance",
"DataConsistencyDPSGuidance",
]
Loading