-
Notifications
You must be signed in to change notification settings - Fork 6k
[API 2.0] add functional pool1d API #26108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
6505ef5
add functional pool1d API,test=develop
LDOUBLEV 70e28b4
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
LDOUBLEV 4bd0c6b
add unittest and import,test=develop
LDOUBLEV 62d8f8c
add paddle.nn Pool1D API,test=develop
LDOUBLEV afa5add
using paddle.nn, test=develop
LDOUBLEV b702df7
fix unittest case, test=develop
LDOUBLEV f6cdf8f
Pool1D 2 Pool1d,test=develop
LDOUBLEV 361ab8f
fix doc and corresponding code,test=develop
LDOUBLEV 7d8520a
fix low coverage; to_variable to to_tensor,test=develop
LDOUBLEV 60194d4
fix low coverage; to_variable to to_tensor,test=develop
LDOUBLEV 28c725b
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
LDOUBLEV 06fe2fd
sort params, Variable to tensor, test=develop
LDOUBLEV 49a374d
fix padding bug, test=develop
LDOUBLEV 60247db
fix conflicts,test=develop
LDOUBLEV File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,373 @@ | ||
| # Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| import numpy as np | ||
| import unittest | ||
| import numpy as np | ||
| from op_test import OpTest | ||
| import paddle.fluid.core as core | ||
| import paddle.fluid as fluid | ||
| from paddle.fluid import compiler, Program, program_guard | ||
| import paddle | ||
| import paddle.nn.functional as F | ||
| import paddle.fluid as fluid | ||
|
|
||
|
|
||
| def adaptive_start_index(index, input_size, output_size): | ||
| return int(np.floor(index * input_size / output_size)) | ||
|
|
||
|
|
||
| def adaptive_end_index(index, input_size, output_size): | ||
| return int(np.ceil((index + 1) * input_size / output_size)) | ||
|
|
||
|
|
||
| def max_pool1D_forward_naive(x, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. pool1D -> pool1d ? |
||
| ksize, | ||
| strides, | ||
| paddings, | ||
| global_pool=0, | ||
| ceil_mode=False, | ||
| exclusive=False, | ||
| adaptive=False, | ||
| data_type=np.float64): | ||
| N, C, L = x.shape | ||
| if global_pool == 1: | ||
| ksize = [L] | ||
| if adaptive: | ||
| L_out = ksize[0] | ||
| else: | ||
| L_out = (L - ksize[0] + 2 * paddings[0] + strides[0] - 1 | ||
| ) // strides[0] + 1 if ceil_mode else ( | ||
| L - ksize[0] + 2 * paddings[0]) // strides[0] + 1 | ||
|
|
||
| out = np.zeros((N, C, L_out)) | ||
| for i in range(L_out): | ||
| if adaptive: | ||
| r_start = adaptive_start_index(i, L, ksize[0]) | ||
| r_end = adaptive_end_index(i, L, ksize[0]) | ||
| else: | ||
| r_start = np.max((i * strides[0] - paddings[0], 0)) | ||
| r_end = np.min((i * strides[0] + ksize[0] - paddings[0], L)) | ||
| x_masked = x[:, :, r_start:r_end] | ||
|
|
||
| out[:, :, i] = np.max(x_masked, axis=(2)) | ||
| return out | ||
|
|
||
|
|
||
| def avg_pool1D_forward_naive(x, | ||
| ksize, | ||
| strides, | ||
| paddings, | ||
| global_pool=0, | ||
| ceil_mode=False, | ||
| exclusive=False, | ||
| adaptive=False, | ||
| data_type=np.float64): | ||
| N, C, L = x.shape | ||
| if global_pool == 1: | ||
| ksize = [L] | ||
| if adaptive: | ||
| L_out = ksize[0] | ||
| else: | ||
| L_out = (L - ksize[0] + 2 * paddings[0] + strides[0] - 1 | ||
| ) // strides[0] + 1 if ceil_mode else ( | ||
| L - ksize[0] + 2 * paddings[0]) // strides[0] + 1 | ||
|
|
||
| out = np.zeros((N, C, L_out)) | ||
| for i in range(L_out): | ||
| if adaptive: | ||
| r_start = adaptive_start_index(i, L, ksize[0]) | ||
| r_end = adaptive_end_index(i, L, ksize[0]) | ||
| else: | ||
| r_start = np.max((i * strides[0] - paddings[0], 0)) | ||
| r_end = np.min((i * strides[0] + ksize[0] - paddings[0], L)) | ||
| x_masked = x[:, :, r_start:r_end] | ||
|
|
||
| field_size = (r_end - r_start) \ | ||
| if (exclusive or adaptive) else (ksize[0]) | ||
| if data_type == np.int8 or data_type == np.uint8: | ||
| out[:, :, i] = (np.rint( | ||
| np.sum(x_masked, axis=(2, 3)) / field_size)).astype(data_type) | ||
| else: | ||
| out[:, :, i] = (np.sum(x_masked, axis=(2)) / | ||
| field_size).astype(data_type) | ||
| return out | ||
|
|
||
|
|
||
| class TestPool1d_API(unittest.TestCase): | ||
| def setUp(self): | ||
| np.random.seed(123) | ||
| self.places = [fluid.CPUPlace()] | ||
| if core.is_compiled_with_cuda(): | ||
| self.places.append(fluid.CUDAPlace(0)) | ||
|
|
||
| def check_avg_static_results(self, place): | ||
| with fluid.program_guard(fluid.Program(), fluid.Program()): | ||
| input = fluid.data(name="input", shape=[2, 3, 32], dtype="float32") | ||
| result = F.avg_pool1d(input, kernel_size=2, stride=2, padding=0) | ||
|
|
||
| input_np = np.random.random([2, 3, 32]).astype("float32") | ||
| result_np = avg_pool1D_forward_naive( | ||
| input_np, ksize=[2], strides=[2], paddings=[0], ceil_mode=False) | ||
|
|
||
| exe = fluid.Executor(place) | ||
| fetches = exe.run(fluid.default_main_program(), | ||
| feed={"input": input_np}, | ||
| fetch_list=[result]) | ||
| self.assertTrue(np.allclose(fetches[0], result_np)) | ||
|
|
||
| def check_avg_dygraph_results(self, place): | ||
| with fluid.dygraph.guard(place): | ||
| input_np = np.random.random([2, 3, 32]).astype("float32") | ||
| input = fluid.dygraph.to_variable(input_np) | ||
| result = F.avg_pool1d(input, kernel_size=2, stride=2, padding=[0]) | ||
|
|
||
| result_np = avg_pool1D_forward_naive( | ||
| input_np, ksize=[2], strides=[2], paddings=[0]) | ||
|
|
||
| self.assertTrue(np.allclose(result.numpy(), result_np)) | ||
|
|
||
| avg_pool1d_dg = paddle.nn.layer.AvgPool1d( | ||
| kernel_size=2, stride=None, padding=0) | ||
| result = avg_pool1d_dg(input) | ||
| self.assertTrue(np.allclose(result.numpy(), result_np)) | ||
|
|
||
| def check_max_static_results(self, place): | ||
| with fluid.program_guard(fluid.Program(), fluid.Program()): | ||
| input = fluid.data(name="input", shape=[2, 3, 32], dtype="float32") | ||
| result = F.max_pool1d(input, kernel_size=2, stride=2, padding=[0]) | ||
|
|
||
| input_np = np.random.random([2, 3, 32]).astype("float32") | ||
| result_np = max_pool1D_forward_naive( | ||
| input_np, ksize=[2], strides=[2], paddings=[0]) | ||
|
|
||
| exe = fluid.Executor(place) | ||
| fetches = exe.run(fluid.default_main_program(), | ||
| feed={"input": input_np}, | ||
| fetch_list=[result]) | ||
| self.assertTrue(np.allclose(fetches[0], result_np)) | ||
|
|
||
| def check_max_dygraph_results(self, place): | ||
| with fluid.dygraph.guard(place): | ||
| input_np = np.random.random([2, 3, 32]).astype("float32") | ||
| input = fluid.dygraph.to_variable(input_np) | ||
| result = F.max_pool1d(input, kernel_size=2, stride=2, padding=0) | ||
|
|
||
| result_np = max_pool1D_forward_naive( | ||
| input_np, ksize=[2], strides=[2], paddings=[0]) | ||
|
|
||
| self.assertTrue(np.allclose(result.numpy(), result_np)) | ||
|
|
||
| max_pool1d_dg = paddle.nn.layer.MaxPool1d( | ||
| kernel_size=2, stride=None, padding=0) | ||
| result = max_pool1d_dg(input) | ||
| self.assertTrue(np.allclose(result.numpy(), result_np)) | ||
|
|
||
| def check_adaptive_max_dygraph_results(self, place): | ||
| with fluid.dygraph.guard(place): | ||
| input_np = np.random.random([2, 3, 32]).astype("float32") | ||
| input = fluid.dygraph.to_variable(input_np) | ||
| result = F.adaptive_max_pool1d(input, output_size=16) | ||
|
|
||
| result_np = max_pool1D_forward_naive( | ||
| input_np, ksize=[16], strides=[0], paddings=[0], adaptive=True) | ||
| self.assertTrue(np.allclose(result.numpy(), result_np)) | ||
|
|
||
| ada_max_pool1d_dg = paddle.nn.layer.AdaptiveMaxPool1d( | ||
| output_size=16) | ||
| result = ada_max_pool1d_dg(input) | ||
| self.assertTrue(np.allclose(result.numpy(), result_np)) | ||
|
|
||
| def check_adaptive_avg_dygraph_results(self, place): | ||
| with fluid.dygraph.guard(place): | ||
| input_np = np.random.random([2, 3, 32]).astype("float32") | ||
| input = fluid.dygraph.to_variable(input_np) | ||
| result = F.adaptive_avg_pool1d(input, output_size=16) | ||
| result_np = avg_pool1D_forward_naive( | ||
| input_np, ksize=[16], strides=[0], paddings=[0], adaptive=True) | ||
|
|
||
| self.assertTrue(np.allclose(result.numpy(), result_np)) | ||
|
|
||
| ada_max_pool1d_dg = paddle.nn.layer.AdaptiveAvgPool1d( | ||
| output_size=16) | ||
| result = ada_max_pool1d_dg(input) | ||
| self.assertTrue(np.allclose(result.numpy(), result_np)) | ||
|
|
||
| def check_adaptive_max_static_results(self, place): | ||
| with fluid.program_guard(fluid.Program(), fluid.Program()): | ||
| input = fluid.data(name="input", shape=[2, 3, 32], dtype="float32") | ||
| result = F.adaptive_max_pool1d(input, output_size=16) | ||
|
|
||
| input_np = np.random.random([2, 3, 32]).astype("float32") | ||
| result_np = max_pool1D_forward_naive( | ||
| input_np, ksize=[16], strides=[2], paddings=[0], adaptive=True) | ||
|
|
||
| exe = fluid.Executor(place) | ||
| fetches = exe.run(fluid.default_main_program(), | ||
| feed={"input": input_np}, | ||
| fetch_list=[result]) | ||
| self.assertTrue(np.allclose(fetches[0], result_np)) | ||
|
|
||
| def check_adaptive_avg_static_results(self, place): | ||
| with fluid.program_guard(fluid.Program(), fluid.Program()): | ||
| input = fluid.data(name="input", shape=[2, 3, 32], dtype="float32") | ||
| result = F.adaptive_avg_pool1d(input, output_size=16) | ||
|
|
||
| input_np = np.random.random([2, 3, 32]).astype("float32") | ||
| result_np = avg_pool1D_forward_naive( | ||
| input_np, ksize=[16], strides=[2], paddings=[0], adaptive=True) | ||
|
|
||
| exe = fluid.Executor(place) | ||
| fetches = exe.run(fluid.default_main_program(), | ||
| feed={"input": input_np}, | ||
| fetch_list=[result]) | ||
| self.assertTrue(np.allclose(fetches[0], result_np)) | ||
|
|
||
| def check_max_dygraph_padding_same(self, place): | ||
| with fluid.dygraph.guard(place): | ||
| input_np = np.random.random([2, 3, 32]).astype("float32") | ||
| input = fluid.dygraph.to_variable(input_np) | ||
| result = F.max_pool1d( | ||
| input, kernel_size=2, stride=2, padding="SAME") | ||
|
|
||
| result_np = max_pool1D_forward_naive( | ||
| input_np, ksize=[2], strides=[2], paddings=[0]) | ||
|
|
||
| self.assertTrue(np.allclose(result.numpy(), result_np)) | ||
|
|
||
| def check_avg_dygraph_padding_same(self, place): | ||
| with fluid.dygraph.guard(place): | ||
| input_np = np.random.random([2, 3, 32]).astype("float32") | ||
| input = fluid.dygraph.to_variable(input_np) | ||
| result = F.avg_pool1d( | ||
| input, kernel_size=2, stride=2, padding="SAME") | ||
|
|
||
| result_np = avg_pool1D_forward_naive( | ||
| input_np, ksize=[2], strides=[2], paddings=[0]) | ||
|
|
||
| self.assertTrue(np.allclose(result.numpy(), result_np)) | ||
|
|
||
| def test_pool1d(self): | ||
| for place in self.places: | ||
|
|
||
| self.check_max_dygraph_results(place) | ||
| self.check_avg_dygraph_results(place) | ||
| self.check_max_static_results(place) | ||
| self.check_avg_static_results(place) | ||
| self.check_adaptive_max_dygraph_results(place) | ||
| self.check_adaptive_avg_dygraph_results(place) | ||
| self.check_adaptive_max_static_results(place) | ||
| self.check_adaptive_avg_static_results(place) | ||
| self.check_max_dygraph_padding_same(place) | ||
| self.check_avg_dygraph_padding_same(place) | ||
|
|
||
|
|
||
| class TestPool2dError_API(unittest.TestCase): | ||
| def test_error_api(self): | ||
| def run1(): | ||
| with fluid.dygraph.guard(): | ||
| input_np = np.random.uniform(-1, 1, | ||
| [2, 3, 32]).astype(np.float32) | ||
| input_pd = fluid.dygraph.to_variable(input_np) | ||
| padding = [[2]] | ||
| res_pd = F.max_pool1d( | ||
| input_pd, kernel_size=2, stride=2, padding=padding) | ||
|
|
||
| self.assertRaises(ValueError, run1) | ||
|
|
||
| def run2(): | ||
| with fluid.dygraph.guard(): | ||
| input_np = np.random.uniform(-1, 1, | ||
| [2, 3, 32, 32]).astype(np.float32) | ||
| input_pd = fluid.dygraph.to_variable(input_np) | ||
| padding = [[2]] | ||
| res_pd = F.max_pool1d( | ||
| input_pd, kernel_size=2, stride=2, padding=padding) | ||
|
|
||
| self.assertRaises(ValueError, run2) | ||
|
|
||
| def run3(): | ||
| with fluid.dygraph.guard(): | ||
| input_np = np.random.uniform(-1, 1, | ||
| [2, 3, 32]).astype(np.float32) | ||
| input_pd = fluid.dygraph.to_variable(input_np) | ||
| padding = "padding" | ||
| res_pd = F.max_pool1d( | ||
| input_pd, kernel_size=2, stride=2, padding=padding) | ||
|
|
||
| self.assertRaises(ValueError, run3) | ||
|
|
||
| def run4(): | ||
| with fluid.dygraph.guard(): | ||
| input_np = np.random.uniform(-1, 1, | ||
| [2, 3, 32, 32]).astype(np.float32) | ||
| input_pd = fluid.dygraph.to_variable(input_np) | ||
| padding = "VALID" | ||
| res_pd = F.max_pool1d( | ||
| input_pd, | ||
| kernel_size=2, | ||
| stride=2, | ||
| padding=padding, | ||
| ceil_mode=True) | ||
|
|
||
| self.assertRaises(ValueError, run4) | ||
|
|
||
| def run5(): | ||
| with fluid.dygraph.guard(): | ||
| input_np = np.random.uniform(-1, 1, | ||
| [2, 3, 32]).astype(np.float32) | ||
| input_pd = fluid.dygraph.to_variable(input_np) | ||
| padding = "VALID" | ||
| res_pd = F.max_pool1d( | ||
| input_pd, | ||
| kernel_size=2, | ||
| stride=2, | ||
| padding=padding, | ||
| ceil_mode=True) | ||
|
|
||
| self.assertRaises(ValueError, run5) | ||
|
|
||
| def run6(): | ||
| with fluid.dygraph.guard(): | ||
| input_np = np.random.uniform(-1, 1, | ||
| [2, 3, 32]).astype(np.float32) | ||
| input_pd = fluid.dygraph.to_variable(input_np) | ||
| padding = "VALID" | ||
| res_pd = F.avg_pool1d( | ||
| input_pd, | ||
| kernel_size=2, | ||
| stride=2, | ||
| padding=padding, | ||
| ceil_mode=True) | ||
|
|
||
| self.assertRaises(ValueError, run6) | ||
|
|
||
| def run7(): | ||
| with fluid.dygraph.guard(): | ||
| input_np = np.random.uniform(-1, 1, | ||
| [2, 3, 32]).astype(np.float32) | ||
| input_pd = fluid.dygraph.to_variable(input_np) | ||
| padding = "paddle" | ||
| res_pd = F.avg_pool1d( | ||
| input_pd, | ||
| kernel_size=2, | ||
| stride=2, | ||
| padding=padding, | ||
| ceil_mode=True) | ||
|
|
||
| self.assertRaises(ValueError, run7) | ||
|
|
||
|
|
||
| if __name__ == '__main__': | ||
| unittest.main() | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
直接int就可以?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
为了和ceil mode区分