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

Enable inference mode to reduce VRAM usage during preprocessing #35

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

akutzer
Copy link
Contributor

@akutzer akutzer commented Aug 19, 2024

Enable torch.inference_mode() during preprocessing so no gradients, etc. are computed during feature extraction

for batch in tqdm(dl, leave=False):
feats.append(
model(batch.type(dtype).to(device)).half().cpu().detach())
with torch.inference_mode():
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One could also think about also enabling mixed precission like:

with torch.inference_mode(), torch.autocast(self.device.type):

@Avic3nna Avic3nna self-requested a review September 10, 2024 15:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant