Skip to content

Commit

Permalink
tkt
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathis committed Feb 12, 2022
1 parent d014213 commit bd47948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/PoolingLayer.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def feedForward(self, inputs: list[Matrice]) -> list[Matrice]:

return self.outputs

def pooling(self, input_: Matrice):
def pooling(self, input_: Matrice) -> Matrice:
output = Matrice.vide(input_.getRows() // self.filterDim, input_.getColumns() // self.filterDim)

for i in range(output.getRows()):
Expand Down

0 comments on commit bd47948

Please sign in to comment.