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])


불러오는 중...
취소
저장