Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
davidavdav committed Mar 1, 2020
2 parents 3c4ecb1 + 99fec1a commit dd17737
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,14 @@ This saves a GMM of an array of GMMs under the name `name` in a file `filename`.
gmm = load(filename, name)
```

In case of using `kind=:full` covariance matrices make sure you have also loaded `LinearAlgebra` module into the current session. Without it JLD is unable to reconstruct `LinearAlgebra.UpperTriangular` type and gmm object won't be created
```julia
using JLD
using GaussianMixtures
using LinearAlgebra
gmm = load(filename, name)
```

Support for large amounts of training data
------
In many of the functions defined above, a `Data` type is accepted in the place where the data matrix `x` is indicated. An object of type `Data` is basically a list of either matrices of filenames, see [BigData](https://github.com/davidavdav/BigData.jl).
Expand Down

0 comments on commit dd17737

Please sign in to comment.