flatten.pyi 413 Bytes
Newer Older
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
1
2
3
4
5
6
7
8
9
10
11
12
# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.

from typing import Any
from .module import Module

class Flatten(Module):
    __constants__: Any = ...
    start_dim: Any = ...
    end_dim: Any = ...
    def __init__(self, start_dim: int = ..., end_dim: int = ...) -> None: ...
    def forward(self, input: Any): ...  # type: ignore
    def __call__(self, input: Any): ...  # type: ignore