Skip to content

Commit 9f899d3

Browse files
authored
Merge pull request #68 from metab0t/master
Update dependencies
2 parents 4c93c34 + 5adbd25 commit 9f899d3

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Project.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
2424
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2525

2626
[compat]
27-
PDMats = "0.9"
28-
StatsBase = "0.32"
27+
PDMats = "0.10"
28+
StatsBase = "0.33"
2929
SpecialFunctions = "0.10"
3030
FileIO = "1.2"
31-
Clustering = "0.13"
31+
Clustering = "0.14"
3232
RDatasets = "0.6"
3333
ScikitLearnBase = "0.5"
3434
Compat = "3.6"
35-
Distributions = "0.22"
35+
Distributions = "0.23"
3636
Arpack = "0.4"
37-
JLD2 = "0.1"
37+
JLD2 = "0.2"

src/data.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function _size(file::AbstractString)
2929
end
3030

3131
## courtesy compatible save for a matrix
32-
function JLD2.save(file::AbstractString, x::Matrix)
32+
function FileIO.save(file::AbstractString, x::Matrix)
3333
save(file,"data", x)
3434
end
3535

src/io.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
## This code is for exchange with our octave / matlab based system
55

66
## save a single GMM
7-
function JLD2.save(filename::AbstractString, name::AbstractString, gmm::GMM)
7+
function FileIO.save(filename::AbstractString, name::AbstractString, gmm::GMM)
88
jldopen(filename, "w") do file
99
# addrequire(file, GaussianMixtures)
1010
write(file, name, gmm)
1111
end
1212
end
1313
## save multiple GMMs
14-
function JLD2.save(filename::AbstractString, name::AbstractString, gmms::Array{GMM})
14+
function FileIO.save(filename::AbstractString, name::AbstractString, gmms::Array{GMM})
1515
jldopen(filename, "w") do file
1616
# addrequire(file, GaussianMixtures)
1717
write(file, name, gmms)

0 commit comments

Comments
 (0)