Skip to content

Commit

Permalink
- 这一版本正式将sod的评估、绘图代码与配置分离,主要考虑如下
Browse files Browse the repository at this point in the history
    - 用户的配置是需要调整的,这部分不适宜被git严格的监视,也便于提交后续更新的时候,直接忽略关于配置的更改,即后续更新时,
      用户配置部分会不再更新,若是添加新功能,直接调整原始的函数,其参数默认关闭新功能,保证用户不会受到影响。
    - sod和cosod评估方式有差异,但是绘图方式一致,所以现将评估绘图拆分成独立部分,置于metrics/sod文件夹下,之后或许或调整位置,
      但这种拆分策略不变。
  - 优化了cosod的评估代码,对sod和cosod的指标recorder部分进行了简化。
  - 不再使用独立的sod_metrics代码,由于我已经将PySODMetrics发布到了PyPI上,所以可以直接通过pip安装。
  - 使用添加了对于print的一个彩色增强的封装,可见`./utils/misc.py`中的`colored_print`。
  - git不再跟踪方法配置文件和数据集配置文件,这部分现有的作为示例,仅供使用者独立补充和参考。
  - 修复了之前绘制Fm曲线时x的问题,之前取反了。详见<https://github.com/lartpang/Py-SOD-VOS-EvalToolkit/issues/2>。
  • Loading branch information
lartpang committed Mar 12, 2021
1 parent f9c1fd5 commit d7bcc1d
Show file tree
Hide file tree
Showing 26 changed files with 883 additions and 3,205 deletions.
9 changes: 5 additions & 4 deletions .gitignore
@@ -1,7 +1,3 @@
# private files
/output/
/untracked/

# Big files
**/*.png
**/*.zip
Expand Down Expand Up @@ -273,4 +269,9 @@ cython_debug/
*.iml
out
gen

# private files
/output/
/untracked/
/configs/methods/
/configs/datasets/
Empty file removed configs/datasets/__init__.py
Empty file.
23 changes: 0 additions & 23 deletions configs/datasets/rgb_cod.py

This file was deleted.

65 changes: 0 additions & 65 deletions configs/datasets/rgb_cosod.py

This file was deleted.

53 changes: 0 additions & 53 deletions configs/datasets/rgb_sod.py

This file was deleted.

73 changes: 0 additions & 73 deletions configs/datasets/rgbd_sod.py

This file was deleted.

Empty file removed configs/methods/__init__.py
Empty file.

0 comments on commit d7bcc1d

Please sign in to comment.