Skip to content

Commit

Permalink
updated README for multiple losses
Browse files Browse the repository at this point in the history
  • Loading branch information
Mihir Paradkar committed Feb 11, 2017
1 parent 8573742 commit c361fee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ In the style of most dimensionality reduction algorithms, the constructor
is an acronym (Graph Generalized Low Rank Model).
For a matrix with no missing data, usage is as follows:
```julia
gm = GGLRM(A, loss, rx, ry, k)
gm = GGLRM(A, losses, rx, ry, k)
```
For a matrix with missing data, add an obs parameter to only optimize over
the observed set of data
```julia
gm = GGLRM(Amissing, loss, rx, ry, k, obs=observations(Amissing))
gm = GGLRM(Amissing, losses, rx, ry, k, obs=observations(Amissing))
```
To fit this model, call:
```julia
Expand Down

0 comments on commit c361fee

Please sign in to comment.