get deepbooru to run with --precision-half

This commit is contained in:
AUTOMATIC1111 2024-06-28 07:51:30 +03:00
parent 42ca30d6c1
commit 06fe174c74
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class DeepDanbooru:
a = np.expand_dims(np.array(pic, dtype=np.float32), 0) / 255
with torch.no_grad(), devices.autocast():
x = torch.from_numpy(a).to(devices.device)
x = torch.from_numpy(a).to(devices.device, devices.dtype)
y = self.model(x)[0].detach().cpu().numpy()
probability_dict = {}