05c708393f95e988b8402ec182db388af7d7cbb4,thinc/layers/meanpool.py,,,#,6

Before Change


from ..model import Model

InputValue = TypeVar("InputValue", bound=Array)
InputLengths = TypeVar("InputLengths", bound=Array)
InputType = Tuple[InputValue, InputLengths]
OutputValue = TypeVar("OutputValue", bound=Array)
OutputLengths = TypeVar("OutputLengths", bound=Array)
OutputType = Tuple[OutputValue, OutputLengths]


def MeanPool() -> Model:
    return Model("mean_pool", forward)

After Change


from ..model import Model


InputType = TypeVar("InputType", bound=Ragged)
OutputType = TypeVar("OutputType", bound=Array)


def MeanPool() -> Model:
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 12

Instances


Project Name: explosion/thinc
Commit Name: 05c708393f95e988b8402ec182db388af7d7cbb4
Time: 2020-01-04
Author: honnibal+gh@gmail.com
File Name: thinc/layers/meanpool.py
Class Name:
Method Name:


Project Name: explosion/thinc
Commit Name: 05c708393f95e988b8402ec182db388af7d7cbb4
Time: 2020-01-04
Author: honnibal+gh@gmail.com
File Name: thinc/layers/sumpool.py
Class Name:
Method Name:


Project Name: explosion/thinc
Commit Name: 05c708393f95e988b8402ec182db388af7d7cbb4
Time: 2020-01-04
Author: honnibal+gh@gmail.com
File Name: thinc/layers/meanpool.py
Class Name:
Method Name:


Project Name: explosion/thinc
Commit Name: 05c708393f95e988b8402ec182db388af7d7cbb4
Time: 2020-01-04
Author: honnibal+gh@gmail.com
File Name: thinc/layers/maxpool.py
Class Name:
Method Name: