Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a new forward proc #502

Merged
merged 1 commit into from
Feb 28, 2025
Merged
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
19 changes: 19 additions & 0 deletions torchdistill/core/interfaces/forward_proc.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,25 @@ def forward_batch_only(model, sample_batch, targets=None, supp_dict=None, **kwar
return model(sample_batch)


@register_forward_proc_func
def forward_batch_only_as_kwargs(model, sample_batch, targets=None, supp_dict=None):
"""
Performs forward computation using `sample_batch` only.

:param model: model.
:type model: nn.Module
:param sample_batch: sample batch.
:type sample_batch: dict
:param targets: training targets (won't be passed to forward).
:type targets: Any
:param supp_dict: supplementary dict (won't be passed to forward).
:type supp_dict: dict
:return: model's forward output.
:rtype: Any
"""
return model(**sample_batch)


@register_forward_proc_func
def forward_batch_target(model, sample_batch, targets, supp_dict=None, **kwargs):
"""
Expand Down