Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

105 add weights of evidence #106

Merged
merged 35 commits into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
04373d4
weights of evidence for predictive mapping
chudasama-bijal Mar 11, 2023
7903995
replacing the default no data value to user defined no data value
chudasama-bijal Jul 28, 2023
7f7f947
replacing default no data value to user defined no data value
chudasama-bijal Jul 28, 2023
0780bd7
fixing all the related functions for using user defined no data value
chudasama-bijal Jul 28, 2023
d1a4e06
Merged branch 'master' of https://github.com/GispoCoding/eis_toolkit …
chudasama-bijal Jul 28, 2023
b932082
miscellaneous minor changes
chudasama-bijal Aug 8, 2023
6cb4b0c
renamed 'save_weights' to 'weights_cleanup'
chudasama-bijal Aug 8, 2023
674da66
renaming tests and corresponding functions
chudasama-bijal Aug 8, 2023
2444e7e
file names and corresponding function names were interchanged. And so…
chudasama-bijal Aug 8, 2023
ea8aabd
added Class Weightsof EvidenceType
chudasama-bijal Aug 8, 2023
b5a8cdb
minor changes related to function renaming
chudasama-bijal Aug 8, 2023
20517f2
Minor edits
chudasama-bijal Aug 8, 2023
ec86142
Merge branch 'master' of https://github.com/GispoCoding/eis_toolkit i…
nmaarnio Aug 8, 2023
fe49952
New version of wofe, unique weights work, WIP
nmaarnio Aug 11, 2023
7884742
Rename, add notebook
nmaarnio Aug 14, 2023
bce9d0a
New versions of wofe
nmaarnio Aug 21, 2023
45e705f
Updates to wofe: Try to fix generalized weights, custom resolution in…
nmaarnio Sep 13, 2023
42bf9c1
Cases where B=0 and D=0 now handled similarly as in Arcs version
nmaarnio Sep 15, 2023
bab009e
Fixed generalized weights calculations
nmaarnio Sep 27, 2023
f407639
Merge branch 'master' of https://github.com/GispoCoding/eis_toolkit i…
nmaarnio Sep 28, 2023
050f5bc
Modify colnames, remove resolution specification for now, added optio…
nmaarnio Sep 28, 2023
c424228
Deleted old files, renamed new versions, changed some functions to pr…
nmaarnio Sep 28, 2023
390564f
Remove old tests, revert unnecessary modifications, add a new exception
nmaarnio Sep 28, 2023
5732a30
Remove vscode settings file
nmaarnio Sep 28, 2023
3a9a983
Improve notebook, remove old functions, added a check
nmaarnio Sep 28, 2023
61d5f00
Adjusted wofe based on review, added tests, deleted unncessary test f…
nmaarnio Sep 29, 2023
db351f3
Merge branch 'master' of https://github.com/GispoCoding/eis_toolkit i…
nmaarnio Sep 29, 2023
72e5dfb
Add categorical weights, adjust documentation
nmaarnio Oct 5, 2023
464a884
Add posterior probability calculations / calculate responses function
nmaarnio Oct 10, 2023
6631362
Fix wofe test file
nmaarnio Oct 10, 2023
cc8136c
wofe wip
nmaarnio Oct 11, 2023
47d15ff
Wofe calculate responses v1 ready, notebook updated
nmaarnio Oct 11, 2023
34b9d9d
Update wofe test
nmaarnio Oct 11, 2023
5514c1d
Update calculate responses to accept unique weight arrays
nmaarnio Oct 12, 2023
c3593ea
Notebook saves calculated posterior rasters locally
nmaarnio Oct 12, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/prediction/weights_of_evidence.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Weights of evidence

::: eis_toolkit.prediction.weights_of_evidence
4 changes: 4 additions & 0 deletions eis_toolkit/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ class CoordinatesOutOfBoundsException(Exception):
"""Exception error class for out of bound coordinates."""


class ClassificationFailedException(Exception):
"""Exception error class for classification failures."""


class EmptyDataFrameException(Exception):
"""Exception error class raised if the dataframe is empty."""

Expand Down
418 changes: 418 additions & 0 deletions eis_toolkit/prediction/weights_of_evidence.py

Large diffs are not rendered by default.

Loading
Loading