checkpoint.pyi 292 Bytes
Newer Older
Tom Birch's avatar
Tom Birch committed
1
2
3
4
# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.

from typing import Tuple
from .. import Tensor
5
from torch.nn.modules.module import Module
Tom Birch's avatar
Tom Birch committed
6
7

def detach_variable(inputs: Tuple[Tensor,...]) -> Tuple[Tensor,...]: ...
8
def checkpoint(function: Module, *args, **kwargs): ...