-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
473743a
commit 82df470
Showing
3 changed files
with
26 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
0.3.1 (unreleased) | ||
================== | ||
|
||
- Bug fix relating to the SVM predict.py Classification Report which mistakenly assumed all categorical types are represented in the data (not necessarily the case for prediction inputs). Fixing the encoder resolves the issue (see below) | ||
|
||
- A custom encoder class `PairEncoder` was created, allowing a user to pass in explicit key-pair values (a dictionary) for categorical features and `SvmEncoder` was updated to use this for encoding “category" (scene/field), "detector" and "wcs". | ||
|
||
- Additional tests added to test_encode.py for the above case | ||
|
||
- Minor enhancements to SVM classification report for better readability. | ||
|
||
|
||
0.3.0 (2022-02-16) | ||
================== | ||
|
||
- SVM module added to `skopes` for evaluating the alignment of HST Single Visit Mosaic images using an "ensembled" 4D image classifier and MLP model. | ||
- CAL dashboard enhancements | ||
- new feature SVM dashboard for model evaluation and data analysis | ||
- enhancements to SVM prep, predict and training modules | ||
- significant additions made to pytest test suite for primary svm-related modules | ||
- minor bug fixes and enhancements | ||
- ability to load/save image arrays as compressed numpy files (single .npz file instead of individual pngs). | ||
- load dataset module added for calcloud dashboard | ||
- Read the Docs documentation and API |
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,6 +1,6 @@ | ||
[metadata] | ||
name = spacekit | ||
version = 0.3.0 | ||
version = 0.3.1rc1 | ||
author = Ru Keïn | ||
author_email = [email protected] | ||
license = MIT | ||
|
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 |
---|---|---|
|
@@ -35,4 +35,4 @@ | |
|
||
|
||
# setup(use_scm_version={'write_to': 'spacekit/_version.py'}) | ||
setup(version="0.3.0") | ||
setup(version="0.3.1rc1") |