Skip to content

Commit 225d613

Browse files
authored
Fix/repo name 2 (#3)
* [UPDATE] repository name odeon-landcodev to odeon * [UPDATE] fix typo odeondocumentation to odeon documentation * [FIX] missing to change one odeon-landcover occurence * [FIX] update changelog
1 parent 6ab40e3 commit 225d613

File tree

3 files changed

+111
-2
lines changed

3 files changed

+111
-2
lines changed

CHANGELOG.rst

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,114 @@
11
Changes
22
=======
3+
0.2.20 (2023-03-19)
4+
-------------------
5+
- missing one odeon-landcover occurence to update
6+
7+
0.2.19 (2023-03-19)
8+
-------------------
9+
- Update repository name from odeon-landcover to odeon, corrections on readme and doc
10+
- Change changelogs order from asc chronological order to desc.
11+
- update url of repository in setup.py
12+
13+
0.2.18 (2022-06-24)
14+
-------------------
15+
- Update documentation and doc configuration after transfert from gitlab to github
16+
17+
0.2.17 (2022-06-23)
18+
-------------------
19+
- Fix issue #19 : batch mode of the generate dataset tool makes multiple copy of sample in csv
20+
- Fix issue #46 : bug in generate when using shapefile having geometries with Z attribute
21+
- Fix issue #47 : Detect by zone has a shift of 1 pixel on result on same case
22+
- Fix Issue #49 : Detect zone wrong extend and resolution output when asking a resolution different from source data
23+
- remove test on gdal tools in setup.py (see #48)
24+
25+
0.2.16 (2022-06-20)
26+
-------------------
27+
- Implement Feature issue #8 : implement "continue training" feature
28+
- Fix issue #15 : grid sampling : tile can be outside the zone
29+
- Fix issue #38 : spatial shift with sampling_sys
30+
31+
0.2.15 (2022-02-21)
32+
-------------------
33+
- Fix issue 45: Metrics - Problem reading file name during dataset creation
34+
35+
0.2.14 (2021-01-11)
36+
-------------------
37+
- Fix issue 44: Deployment script changes in relation to pylint developments.
38+
- Fix issues 43: Metrics: use the tool with predictions and masks of differents shapes.
39+
- Refactoring of metrics code (to correct fiew problems on testing parameters and to gather plot functions).
40+
41+
0.2.13 (2021-11-18)
42+
-------------------
43+
- Fix issue 40: Metrics: problem with labels in the case of class selection.
44+
- Fix issue 41: Forgot to change version and do modifcations on CHANGELOG.rst file.
45+
46+
0.2.12 (2021-10-22)
47+
------------------
48+
- fix issue 39: Reports become unreadable when the number of classes is too high and we would like to add the
49+
possibility to output in a csv file the threshold values corresponding to each point of the ROC/PR curves.
50+
51+
0.2.11 (2021-10-21)
52+
------------------
53+
- fix issue 31 : metric script don't work when predicition and mask files do not have the same number of bands.
54+
- add the feature to select the classes on which we want to use the metrics
55+
- correction on cm figure size when the number of classes is large.
56+
- correction on the export of metrics in a json file.
57+
58+
0.2.9 (2021-10-05)
59+
------------------
60+
- fix issue 34 : regression introduced in generate dataset on batch mode.
61+
62+
0.2.8 (2021-10-04)
63+
------------------
64+
- fix regression introduce in v0.2.4 in detection zone.
65+
66+
0.2.7 (2021-09-31)
67+
------------------
68+
- improve miou computation speed during training
69+
use pytorch in place of numpy to do MiOu computation.
70+
71+
0.2.6 (2021-09-30)
72+
------------------
73+
- fix issue with new mobilenetv2 module on new torchvision version without regression
74+
75+
0.2.5 (2021-09-27)
76+
------------------
77+
- fix issue with BCE loss.
78+
Don't call torch loss directly and convert target tensor to long only for CrossEntropyWithLogitLoss.
79+
80+
0.2.4 (2021-09-27)
81+
------------------
82+
- Refactoring of DEM computation to align detection and generation. Fix issue # 21 (closed)
83+
- Correction of bug when bands are after DSM or DTM when dem option is set to true. Fix issue #20 (closed)
84+
- Fixing the option compute_only_mask to compute only masks and not images. Fix issue #18 (closed)
85+
- Correct problems in stats related to the modifications made to remove gdal dependencies. Fix issue #24 (closed)
86+
87+
0.2.3 (2021-09-24)
88+
------------------
89+
- Correct the problem in generation when a source have NoDataValue. Should fix issue 23.
90+
- fix minimum version number for packages pandas and geopandas. Fix issue #30 (closed)
91+
- fix problem of homogeneity in band indices between tools in code and in documentation. Fix issue #29 (closed)
92+
93+
0.2.2 (2021-09-14)
94+
------------------
95+
- removed the image_to_ndarray (using gdal) replacing every call to raster_to_ndarray (using rasterio). Should fix issue 22 (closed)
96+
97+
0.2.1 (2021-09-14)
98+
------------------
99+
- fix zone detection problem in tile generation
100+
101+
0.2 (2021-09-13)
102+
------------------
103+
- add tool stats
104+
- add tool metrics
105+
- add of the documentation relative to these tools
106+
- add module report
107+
108+
0.1.1 (2021-01-06)
109+
------------------
110+
- fix issue 16
111+
- fix resolution change in detection
3112

4113
0.2.19 (2023-03-19)
5114
-------------------

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
22

3-
# ODEON Landcover
3+
# ODEON
44

55
ODEON stands for Object Delineation on Earth Observations with Neural network.
66
It is a set of command-line tools performing semantic segmentation on remote

odeon/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.2.19"
1+
__version__ = "0.2.20"
22

33
from odeon.commons.logger.logger import get_new_logger, get_stream_handler
44
try:

0 commit comments

Comments
 (0)