Skip to content

Commit f9c03e8

Browse files
committed
chore(version): v0.9.0
* New features 1. feat(simpleir): add cfg.DATASET.RETRIEVAL_NAME for gallery_dir / query_dir. 41699d8 2. feat(dataset): add Oxford datset. 0f5a17b 3. feat(metric): add Precision metric. 2e824d0 4. feat(configs): add cfg.RETRIEVAL.EXTRACT.PCA_PATH. b55f389 5. feat(models): add ModelBase. acba468 6. feat(retrieval): add pca. 7df8201 7. feat(retrieval): init. a7e977c 8. feat(distance.py): distance calculation in different ways. 8bd2ba5 * Bug fixes 1. fix(metric): fix precision(). cb16a53 2. fix(metric): fix load_retrieval(). 38d1ddb 3. fix(retrieval): fix rank_name / rank_label saving. a0548f3 4. fix(simpleir): update. 8552159 5. fix(extract): import dataset classes. 1f58b69 6. fix(retrieval): update args usage. b544ed4 7. fix(extract): update helper.py. d763e92 * Breaking changes 1. refactor(simpleir): update schema and remove unused code. d799b84 2. refactor(utils): update. 4dec241 BREAKING CHANGE:
1 parent 9efe971 commit f9c03e8

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

CHANGE.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
11

22
# CHANGE
33

4+
## v0.9.0
5+
6+
* New features
7+
1. feat(simpleir): add cfg.DATASET.RETRIEVAL_NAME for gallery_dir / query_dir. [41699d8397](https://github.com/zjykzj/SimpleIR/tree/41699d83974737abccf9c58803ecb784229f5089)
8+
2. feat(dataset): add Oxford datset. [0f5a17b8303](https://github.com/zjykzj/SimpleIR/tree/0f5a17b8303034e4da7a93d137eda983a374ecba)
9+
3. feat(metric): add Precision metric. [2e824d05842](https://github.com/zjykzj/SimpleIR/tree/2e824d05842f941aee2597ebed428b7ce9a5556f)
10+
4. feat(configs): add cfg.RETRIEVAL.EXTRACT.PCA_PATH. [b55f3899377](https://github.com/zjykzj/SimpleIR/tree/b55f3899377df836101556a4e65ccfe5006ba2bd)
11+
5. feat(models): add ModelBase. [acba4684b6e](https://github.com/zjykzj/SimpleIR/tree/acba4684b6e20a46d4bfff85e115b73369efdac3)
12+
6. feat(retrieval): add pca. [7df8201bc8ee](https://github.com/zjykzj/SimpleIR/tree/7df8201bc8eefe9009e54ac250b6239090d1055d)
13+
7. feat(retrieval): init. [a7e977cf0f](https://github.com/zjykzj/SimpleIR/tree/a7e977cf0f1a95036215161da4d9bc2aa1fc9aaa)
14+
8. feat(distance.py): distance calculation in different ways. [8bd2ba527e](https://github.com/zjykzj/SimpleIR/tree/8bd2ba527e4778460ced11c7c8ee09561abb0270)
15+
* Bug fixes
16+
1. fix(metric): fix precision(). [cb16a5318a](https://github.com/zjykzj/SimpleIR/tree/cb16a5318aa2b00961201ede0e8ece804cd909bc)
17+
2. fix(metric): fix load_retrieval(). [38d1ddbe7a](https://github.com/zjykzj/SimpleIR/tree/38d1ddbe7ac64634a29d7a5166250e10e895a79e)
18+
3. fix(retrieval): fix rank_name / rank_label saving. [a0548f3ccb9](https://github.com/zjykzj/SimpleIR/tree/a0548f3ccb9e74f5b2bff978e4e7da515070a249)
19+
4. fix(simpleir): update. [8552159f0c3](https://github.com/zjykzj/SimpleIR/tree/8552159f0c347027a667c3f1233a07a32ebe5611)
20+
5. fix(extract): import dataset classes. [1f58b693b4d](https://github.com/zjykzj/SimpleIR/tree/1f58b693b4df511980160b5e260b6baacc55bbe4)
21+
6. fix(retrieval): update args usage. [b544ed48bff](https://github.com/zjykzj/SimpleIR/tree/b544ed48bff1cfa31878c598d920c3659a392c1a)
22+
7. fix(extract): update helper.py. [d763e927010d3c](https://github.com/zjykzj/SimpleIR/tree/d763e927010d3cc03d80f6e3b2282d1f6f3dc8e4)
23+
* Breaking changes
24+
1. refactor(simpleir): update schema and remove unused code. [d799b84f40](https://github.com/zjykzj/SimpleIR/tree/d799b84f4068aba3ae7a47803fb1404cd28f0295)
25+
2. refactor(utils): update. [4dec24196a12](https://github.com/zjykzj/SimpleIR/tree/4dec24196a122f3673db5ab361a58f11ac0972c1)
26+
427
## v0.8.4
528

629
* New features

mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 站点名称
2-
site_name: 'SimpleIR(v0.8.4)'
2+
site_name: 'SimpleIR(v0.9.0)'
33
# 仓库链接
44
repo_url: https://github.com/zjykzj/SimpleIR.git
55
# 作者
@@ -13,7 +13,7 @@ site_dir: 'site'
1313
# 额外信息
1414
extra:
1515
# 版本号
16-
version: 0.8.4
16+
version: 0.9.0
1717
# 主题
1818
theme:
1919
# name: 'readthedocs'

simpleir/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
@description:
88
"""
99

10-
__version__ = '0.8.4'
10+
__version__ = '0.9.0'

0 commit comments

Comments
 (0)