YHU11

Results 2 issues of YHU11

Hello, thank you for sharing the code. I have a question. Can this model be predicted based on only one time feature after training? How can it be predicted? Is...

def __getitem__(self, idx: int) -> Tuple[np.ndarray, np.ndarray, np.ndarray, np.ndarray]: if self.time_features: dim_idx = idx // self.n_time_samples dim_slice = slice(dim_idx, dim_idx + 1) idx = idx % self.n_time_samples else: dim_slice =...