-
Notifications
You must be signed in to change notification settings - Fork 0
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
add documentation #7
Merged
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,25 @@ function colnormalize!(W, H, p::Integer=2) | |
end | ||
return W, H | ||
end | ||
|
||
""" | ||
colnormalize(W, H, p) | ||
|
||
This function normalize ||W[:, i]||_p = 1 for i in 1:size(W, 2) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You might mention that any change in scaling is transferred to the corresponding |
||
|
||
To use this function: | ||
Wnormalized, Hnormalized = colnormalize(W, H, p) | ||
timholy marked this conversation as resolved.
Show resolved
Hide resolved
|
||
""" | ||
colnormalize(W, H, p::Integer=2) = colnormalize!(copy(W), copy(H), p) | ||
|
||
""" | ||
colmerge2to1pq(S::AbstractArray, T::AbstractArray, n::Integer) | ||
|
||
This function merges components in W and H (columns in W and rows in H) from original number of components to n components (n columns and rows left in W and H respectively). | ||
|
||
To use this function: | ||
Wmerge, Hmerge, mergeseq = colmerge2to1pq(W, H, n), where Wmerge and Hmerge are the merged results with n components. mergeseq is the sequence of merge pair ids (id1, id2), which is the components id of single merge. | ||
""" | ||
function colmerge2to1pq(S::AbstractArray, T::AbstractArray, n::Integer) | ||
mrgseq = Tuple{Int, Int}[] | ||
S = [S[:, j] for j in axes(S, 2)]; | ||
|
@@ -112,6 +129,14 @@ function remix_enact(S::AbstractVector{TS}, T::AbstractVector, id1::Integer, id2 | |
return S12, T12 | ||
end | ||
|
||
""" | ||
mergecolumns(W, H, mergeseq; tracemerge=false) | ||
|
||
This function merges components in ``W`` and ``H`` (columns in ``W`` and rows in ``H``) according to the sequence of merge pair ids ``mergeseq``. | ||
|
||
To use this function: | ||
Wmerge, Hmerge, WHstage, Err = mergecolumns(W, H, mergeseq; tracemerge), where ``Wmerge`` and ``Hmerge`` are the merged results. ``WHstage::Vector{Tuple{Matrix, Matrix}}`` includes the results of each merge stage. ``WHstage=[]`` if ``tracemerge=false``. ``Err::Vector`` includes merge penalty of each merge stage. | ||
""" | ||
function mergecolumns(W::AbstractArray, H::AbstractArray, mergeseq::AbstractArray; tracemerge::Bool = false) | ||
Err = Float64[] | ||
S = [W[:, j] for j in axes(W, 2)] | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
To show the default value