-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
29 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# TIDE Changelog | ||
|
||
## v1.0.1 | ||
### Error Calculation | ||
- **Important**: Fixed an oversight where detections ignored by AP calculation were not allowed to contribute to fixing errors. This caused a lot of error in datasets with large amounts of ignore regions (e.g., LVIS) to significantly overrepresent Missed Error and underrepresent either Classification or Localization error. This fix will also slightly change errors for other datasets (< .4 dAP on COCO), but conclusions on LVIS change dramatically. | ||
### Plotting | ||
- Fixed issue with pie plots sometimes having negative padding. | ||
- Added automatic rescaling to the bar plots. This scalining will persist for the entire TIDE object, so you can compare between runs. | ||
### Datasets | ||
- Fixed bug in the LVIS automatic download script that caused it to crash after downloading. | ||
|
||
|
||
## v1.0.0 | ||
- Initial release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = '1.0.0' | ||
__version__ = '1.0.1' | ||
|
||
from .quantify import * | ||
from .errors.qualifiers import * | ||
|