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

【PaddlePaddle Hackathon 2】15、为 Paddle 新增 nanmedian API #40318

Closed
TCChenlong opened this issue Mar 8, 2022 · 3 comments
Closed

【PaddlePaddle Hackathon 2】15、为 Paddle 新增 nanmedian API #40318

TCChenlong opened this issue Mar 8, 2022 · 3 comments

Comments

@TCChenlong
Copy link
Contributor

TCChenlong commented Mar 8, 2022

(此 ISSUE 为 PaddlePaddle Hackathon 第二期活动的任务 ISSUE,更多详见 【PaddlePaddle Hackathon 第二期】任务总览

【任务说明】

任务标题:为 Paddle 新增 nanmedian API

技术标签:深度学习框架,Python,C++

任务难度:中等

详细描述:paddle.nanmedian 扩展了 paddle.median API 的功能,如果输入Tensor中有nan值, paddle.median 会将nan值考虑在内然后取中位数(有可能为nan值),而 paddle.nanmedian 只考虑非nan值的中位数。比如输入数据 x = [[nan, 2. , 3. ], [0. , 1. , 2. ]],x.median() 得到 [nan],x.median(0) 得到 [nan, 1.5, 2.5],x.nanmedian() 得到 [2.],x.nanmedian(0) 得到 [0, 1.5, 2.5]。此API需要支持的调用路径为:paddle.nanmedian 和 Tensor.nanmedian 。

【提交流程】

请按 新增API 开发&提交流程中的描述,完成任务提交过程中的相关步骤。

【提交内容】

【合入标准】

【技术要求】

  • 熟悉 paddle C++ 层面的 sort、isnan、sum 等基础算子的逻辑和使用
  • 熟练掌握 C++、Python

【参考内容】

【答疑交流】

  • 如果在开发中对于上述任务有任何问题,欢迎在本 ISSUE 下留言交流。
  • 对于开发中的共性问题,在活动过程中,会定期组织答疑,请大家关注官网&QQ群的通知,及时参与。
@paddle-bot-old
Copy link

paddle-bot-old bot commented Mar 8, 2022

您好,我们已经收到了您的问题,会安排技术人员尽快解答您的问题,请耐心等待。请您再次检查是否提供了清晰的问题描述、复现代码、环境&版本、报错信息等。同时,您也可以通过查看官网API文档常见问题历史IssueAI社区来寻求解答。祝您生活愉快~

Hi! We've received your issue and please be patient to get responded. We will arrange technicians to answer your questions as soon as possible. Please make sure that you have posted enough message to demo your request. You may also check out the APIFAQGithub Issue and AI community to get the answer.Have a nice day!

@thunder95
Copy link
Contributor

测试发现sort操作也无法对nan列产生作用,这需要写cuda算子吗?

@TCChenlong
Copy link
Contributor Author

测试发现sort操作也无法对nan列产生作用,这需要写cuda算子吗?

这个可以将自己的思路写在 RFC 中,那里在做判断哈~

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants