-
Notifications
You must be signed in to change notification settings - Fork 2
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
Wavelets #4
Conversation
@@ -17,7 +17,7 @@ function get_GSI( | |||
elseif a.basis == "wav4" | |||
variances = norms(a.fc[λ],4,dict=false) .^ 2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
variances = norms(a.fc[λ],4,dict=false) .^ 2 | |
variances = norms(a.fc[λ], 4, dict = false) .^ 2 |
@@ -33,7 +33,7 @@ function get_GSI( | |||
elseif a.basis == "wav4" | |||
variances = norms(a.fc[λ],4,dict=true) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
variances = norms(a.fc[λ],4,dict=true) | |
variances = norms(a.fc[λ], 4, dict = true) |
@@ -33,7 +33,7 @@ function get_GSI( | |||
elseif a.basis == "wav4" | |||
variances = norms(a.fc[λ],4,dict=true) | |||
else | |||
variances = norms(a.fc[λ],dict=true) | |||
variances = norms(a.fc[λ],dict = true) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
variances = norms(a.fc[λ],dict = true) | |
variances = norms(a.fc[λ], dict = true) |
@@ -33,7 +33,7 @@ function get_GSI( | |||
elseif a.basis == "wav4" | |||
variances = norms(a.fc[λ],4,dict=true) | |||
else | |||
variances = norms(a.fc[λ],dict=true) | |||
variances = norms(a.fc[λ],dict = true) | |||
end | |||
|
|||
return Dict((u,variances[u]^2/variance_f) for u in keys(variances)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
return Dict((u,variances[u]^2/variance_f) for u in keys(variances)) | |
return Dict((u, variances[u]^2 / variance_f) for u in keys(variances)) |
Codecov Report
@@ Coverage Diff @@
## main #4 +/- ##
=====================================
Coverage 0.00% 0.00%
=====================================
Files 5 5
Lines 300 300
=====================================
Misses 300 300
Continue to review full report at Codecov.
|
some little changes that GSI, Attribute Ranking should work for wavelets and all other basis...