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

Device handling #150

Merged
merged 4 commits into from
Nov 29, 2023
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
4 changes: 3 additions & 1 deletion deckard/base/model/art_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from art.estimators import BaseEstimator
from hydra.utils import instantiate
from omegaconf import DictConfig, OmegaConf

import numpy as np
from .keras_models import KerasInitializer, keras_dict # noqa F401
from .tensorflow_models import ( # noqa F401
TensorflowV1Initializer,
Expand Down Expand Up @@ -71,6 +71,8 @@ def __call__(self):
logger.info("Model moved to GPU")
device = torch.device("cuda")
model.to(device)
if isinstance(data[0][0], np.ndarray):
data = [torch.from_numpy(d).to(device) for d in data]
data = [d.to(device) for d in data]
model = TorchInitializer(
data=data,
Expand Down
Loading