summaryrefslogtreecommitdiff
path: root/models/model.py
blob: 369d6c27b735326d3931586be932e101bc89b2d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from typing import List, Dict, Union, Tuple

import torch
from torch.utils.data.dataloader import default_collate


class Model:
    def __init__(
            self,
            batch_size: Tuple[int, int]
    ):
        (self.pr, self.k) = batch_size

    def _batch_splitter(
            self,
            batch: List[Dict[str, Union[str, torch.Tensor]]]
    ) -> List[Tuple[Dict[str, List[Union[str, torch.Tensor]]],
                    Dict[str, List[Union[str, torch.Tensor]]]]]:
        """
        Disentanglement cannot be processed on different subjects at the
        same time, we need to load `pr` subjects one by one. The batch
        splitter will return a pr-length list of tuples (with 2 dicts
        containing k-length lists of labels, conditions, view and
        k-length tensor of clip data, representing condition 1 and
        condition 2 respectively).
        """
        _batch = []
        for i in range(0, self.pr * self.k * 2, self.k * 2):
            _batch.append((default_collate(batch[i:i + self.k]),
                           default_collate(batch[i + self.k:i + self.k * 2])))

        return _batch