How can I train the DeepIsolationForest model on my GPU?
Neither this
from deepod.models.tabular import DeepIsolationForest
clf_dif = DeepIsolationForest(device = 'cuda')
nor this
import torch
from deepod.models.tabular import DeepIsolationForest
device = torch.device("cuda")
clf_dif = DeepIsolationForest(device = device)
works.