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

新增需求征集(Collect Feature Request) #3363

Open
shiyutang opened this issue Jul 11, 2023 · 16 comments
Open

新增需求征集(Collect Feature Request) #3363

shiyutang opened this issue Jul 11, 2023 · 16 comments
Assignees

Comments

@shiyutang
Copy link
Collaborator

shiyutang commented Jul 11, 2023

我们将这个Issue 保持开放状态,以收集用户的功能请求并听取您的声音。我们的发布计划将在不同的问题上进行更新。

在这个Issue中,您可以:

  1. 通过发表评论来建议新功能。
  2. 使用 👍 投票支持功能请求,或者使用 👎 反对。 (请记住,我们也许无法响应所有功能请求,因此请投票给您最喜欢的功能请求!)
  3. 如果你也愿意参加代码贡献,欢迎参与我们的活动 #10223。
  4. 我们会在上述活动的技术研讨会中对需求进行讨论,如果想要参与讨论你觉得重要的需求,欢迎加入上述活动微信群。

We keep this issue open to collect feature requests from users and hear your voice. Our release plan will be updated on different issues.

In this issue, you can either:

  1. Suggest a new feature by leaving a comment.
  2. Vote for a feature request with 👍 or be against it with 👎. (Remember that developers are busy and cannot respond to all feature requests, so vote for your most favorable one!)
  3. Tell us that you would like to help implement one of the features in the list or review the PRs. Welcome to participate in our activity #10223(This is the greatest thing to hear about! )
  4. Join the above WeChat group in the activity link if you want to discuss the new features with us
@shiyutang
Copy link
Collaborator Author

shiyutang commented Jul 11, 2023

范例:
需求描述:复现高精度移动端模型
需求场景(这个需求可以解决哪些应用场景的问题): 覆盖移动端的分割场景
潜在解决方案(问题分解):基于论文复现指南复现。

example:
Description of feature request:
Requirement scenarios (what application scenarios can this feature request solve):
Potential solutions (problem breakdown):

@shiyutang shiyutang pinned this issue Jul 11, 2023
@yanyonghua
Copy link

需求描述:复现demo里面的操作
需求场景(这个需求可以解决哪些应用场景的问题): 根据官方文档是没有办法一步一步走下来的,就像下面的,然后cd进入到PaddleSeg/contrib/Matting目录 ,contrib下根本就没有Matting目录 。。。如果结构改变,至少要维护一下现有的项目让人看得懂吧。
潜在解决方案(问题分解):基于论文复现指南复现。

首先git最新的PaddleSeg项目,然后cd进入到PaddleSeg/contrib/Matting目录。将下载下来的modnet-hrnet_w18.pdparams动态图模型文件(也可以自行训练得到)放置在当前文件夹(PaddleSeg/contrib/Matting)下面。然后修改配置文件 configs/modnet_mobilenetv2.yml(注意:虽然采用hrnet18模型,但是该模型依赖的配置文件modnet_hrnet_w18.yml本身依赖modnet_mobilenetv2.yml),修改其中的val_dataset字段如下

@shiyutang
Copy link
Collaborator Author

shiyutang commented Jul 17, 2023

如果结构改变,至少要维护一下现有的项目让人看得懂吧。

@yanyonghua 这个问题更像是enhancement而不是feature,欢迎根据你走通的流程提交PR,或者向我们提交Issue请其他的开发者共同参与。

@Asthestarsfalll
Copy link
Contributor

需求描述:将head等组件独立出来,清理重复代码,如BasicBlock Bottleneck 等很多重复定义的模块
需求场景: 便于用户更换不同的模块实验及便于阅读代码

@shiyutang
Copy link
Collaborator Author

@Asthestarsfalll Hi,这个模块的抽取可能对现有代码的改变较大,我们暂时可能不会有相关的计划进行修改,但是非常感谢你的建议~

@Asthestarsfalll
Copy link
Contributor

需求描述:支持多标签分割
需求场景:多标签语义分割任务 multi-label semantic segmentation #2174

@shiyutang
Copy link
Collaborator Author

shiyutang commented Aug 16, 2023

@Asthestarsfalll
嗯嗯呢,多标签这个感觉可以加,应该就是改一下输出和损失,我们可以出成一个命题任务让大家认领,你是否感兴趣按照模版建立一个issue呢?

@Aoldcat1997
Copy link

需求描述:遥感多类别语义标注
需求场景:能够使用自己提供部分数据集对模型进微调,以提对遥感数据应用场景的覆盖
潜在解决方案:对现有建筑分割的模型开源
注:遥感标注方面出具处理感觉做的挺好的,但标签类型目前停留在建筑;对一些中小型遥感公司,进行解译业务开展时如何快速获取深度学习样本多数情况还是手工提取,效率非常低

@zouxiaodong
Copy link

zouxiaodong commented Nov 10, 2023

需求描述:大图片小目录SAM Anything
需求场景:sam Anything需要支持SAHI

@ZS-YANG
Copy link

ZS-YANG commented Nov 29, 2023

场景描述:在使用EiSeg进行交互式标注时,出现边界简化前后差距过大的问题
潜在解决方案:是否可以在ui中添加一个控制简化倍率的参数值,使用户可以更加灵活的控制简化倍率

if building is False:
# -- Douglas-Peucker算法边界简化
contour = cv2.approxPolyDP(contour, epsilon / 10, True)
else:
# -- 建筑边界简化(https://github.com/niecongchong/RS-building-regularization)
if contour.shape[0] >= 2:
contour = boundary_regularization(contour, img_shape, epsilon)

@chenghuaWang
Copy link

chenghuaWang commented Jan 10, 2024

需求描述:SAM 中 Generate masks by sampling a grid over the image with this many points to a side. 如 meta 的 SAM everything demo. ref code
需求场景:产生 low-level 任务中全图不同物体的 mask。

需求描述:aistudio 套件中的 PaddleSeg 套件的版本太旧了,没有SAM。建议与github release 保持同步。
需求场景:所有在aistudio 中希望使用最新版 PaddleSeg 的用户。

@God-song
Copy link

需求场景:想要分割图片各种不同类型的线段,期望还能得到线段的端点坐标,并且每条线段的端点坐标要和分割出来的线段匹配上

@hyxzhang
Copy link

需求场景:rgb视频抠图,支持多线程并行,提升matting抠图效率

@hekaimeng123
Copy link

需求描述:提供伪装目标分割(COS\COD)的支持
需求场景:低对比度、边界难识别的场景下目标的分割提取

@KillerQueen-dust
Copy link

需求描述:提供更全面的backbone预训练模型参数和配置文件,像是xception_deeplab之类的,明明之前静态图版本都有的
需求场景:论文复现

@dulicui742
Copy link

需求描述:MedicalSeg中nnUNet能否按照nnUNetV2版本实现?
需求场景:直接使用nnUnetV2训练的过程不能直接用在paddle中,而且paddle中使用相同的数据训练出来的多分类结果较nnUNetV2来说差了好多,不好定位原因。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: In Progress
Development

No branches or pull requests