mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-08 07:39:33 +01:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/49553 Test Plan: Imported from OSS Reviewed By: zdevito Differential Revision: D25618577 Pulled By: jamesr66a fbshipit-source-id: 042f742f9ca02e59bbceda97bfcf47f9bac07873
8 lines
117 B
Python
8 lines
117 B
Python
from typing import NamedTuple
|
|
|
|
import torch
|
|
|
|
class MyNamedTup(NamedTuple):
|
|
i : torch.Tensor
|
|
f : torch.Tensor
|