Skip to content
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

【Hackathon No.25】为 Paddle 新增 nanquantile 数学计算API #41343

Merged
merged 20 commits into from Apr 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
126720b
add nanquantile and fix quantile bug
Asthestarsfalll Apr 2, 2022
dc89e91
add unittest of nanquantile
Asthestarsfalll Apr 2, 2022
908548f
fix bug of test_quantile
Asthestarsfalll Apr 2, 2022
34f7742
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
Asthestarsfalll Apr 2, 2022
b63469e
fix typo
Asthestarsfalll Apr 2, 2022
34f4df9
fig type error
Asthestarsfalll Apr 2, 2022
3306abc
update the code
Asthestarsfalll Apr 2, 2022
56e3be8
fix error
Asthestarsfalll Apr 2, 2022
1b0c13d
refactor unittest and update example code
Asthestarsfalll Apr 7, 2022
350ccad
reduce data scale
Asthestarsfalll Apr 12, 2022
09a5c25
Merge branch 'PaddlePaddle:develop' into nanquantile
Asthestarsfalll Apr 12, 2022
0e2ef42
update
Asthestarsfalll Apr 12, 2022
78d332f
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
Asthestarsfalll Apr 12, 2022
34ab31f
Merge branch 'nanquantile' of https://github.com/Asthestarsfalll/Padd…
Asthestarsfalll Apr 12, 2022
31e1734
add nanquantile to __all__
Asthestarsfalll Apr 13, 2022
4669518
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
Asthestarsfalll Apr 13, 2022
4250918
Merge branch 'PaddlePaddle:develop' into nanquantile
Asthestarsfalll Apr 13, 2022
86d65bb
add missing comma
Asthestarsfalll Apr 14, 2022
b3bc441
Merge branch 'nanquantile' of https://github.com/Asthestarsfalll/Padd…
Asthestarsfalll Apr 14, 2022
26c993f
Merge branch 'PaddlePaddle:develop' into nanquantile
Asthestarsfalll Apr 14, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions python/paddle/__init__.py
Expand Up @@ -329,6 +329,7 @@
from .tensor.stat import numel # noqa: F401
from .tensor.stat import median # noqa: F401
from .tensor.stat import quantile # noqa: F401
from .tensor.stat import nanquantile # noqa: F401
from .device import get_cudnn_version # noqa: F401
from .device import set_device # noqa: F401
from .device import get_device # noqa: F401
Expand Down Expand Up @@ -495,6 +496,7 @@
'numel',
'median',
'quantile',
'nanquantile',
'no_grad',
'set_grad_enabled',
'is_grad_enabled',
Expand Down
236 changes: 0 additions & 236 deletions python/paddle/fluid/tests/unittests/test_quantile.py

This file was deleted.