IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
瀏覽代碼

Small fix.

master
Stanislaw Adaszewski 3 年之前
父節點
當前提交
915c568490
共有 1 個檔案被更改,包括 3 行新增0 行删除
  1. +3
    -0
      src/icosagon/data.py

+ 3
- 0
src/icosagon/data.py 查看文件

@@ -31,6 +31,9 @@ def _equal(x: torch.Tensor, y: torch.Tensor):
indices_y = list(map(tuple, y.indices().transpose(0, 1)))
order_y = sorted(range(len(indices_y)), key=lambda idx: indices_y[idx])
if not indices_x == indices_y:
return torch.tensor(0, dtype=torch.uint8)
return (x.values()[order_x] == y.values()[order_y])


Loading…
取消
儲存