-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Review of codebase and docs - Probabilities and Encodings- Datseris (#…
…213) * update probabilities table * CountOccurrences works with `Any` input * better terminology header * simpler headers in probabilities * Add encodings page * simplify SymbolicPermutation docstring * reference complexity measures * correct dosctring to reference isrand * more organized tests for symbolic permutat * full rewrite of `SymbolicPermutation` and proper `encode` for Ordinal. * type optimization in making the embedding * remove entropy! * simplifi probabilities! even more * move fasthist to encoding folder * complete unification of symbolic perm methods * docstring for weighted fversion * add docstring to amplkitude aware * delete ALL other files * fix all symbolic permutation tests * fix all permutation tests (and one file only) * clarify source code of encode Gaussian * better docstring for GaussEncod * simplify docstring of Dispersion * more tests for naivekernel * Zhu -> Correa * shorter docstring for spatial permutation * port spatial permutation example to Examples * re-write SpatialSymb to have encoding as field. All tests pass. * better display of exampels in decode * better doc for ordinal encoding * Some typos/nitpickery * Probabilities can't compute. Computations are done with probabilities as *input* * Don't duplicate `SpatialDispersion` * Clarify docstrings a bit * Typo * Cross-reference spatial estimators Co-authored-by: Kristian Haaga <[email protected]>
- Loading branch information
Showing
37 changed files
with
725 additions
and
1,033 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
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,20 @@ | ||
# Encodings | ||
|
||
## Encoding API | ||
|
||
Some probability estimators first "encode" input data into an intermediate representation indexed by the positive integers. This intermediate representation is called an "encoding" and its API is defined by the following: | ||
|
||
```@docs | ||
Encoding | ||
encode | ||
decode | ||
``` | ||
|
||
## Available encodings | ||
|
||
```@docs | ||
OrdinalPatternEncoding | ||
GaussianCDFEncoding | ||
RectangularBinEncoding | ||
``` | ||
|
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
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
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,2 +1,4 @@ | ||
include("fasthist.jl") | ||
include("rectangular_binning.jl") | ||
include("gaussian_cdf.jl") | ||
include("ordinal_pattern.jl") |
Oops, something went wrong.