Skip to content

Commit

Permalink
fileio
Browse files Browse the repository at this point in the history
  • Loading branch information
montyvesselinov committed Apr 18, 2024
1 parent 86010b2 commit 92c4f3a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ version = "1.0.1"
[deps]
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
DocumentFunction = "e1f3b4f0-2dc4-57d3-83f7-d4b7faf3b05b"
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
Gadfly = "c91e804a-d5a3-530f-b6f0-dfbca275c004"
JLD = "4138dd39-2aa7-5051-a626-17a0bb65d9c8"
Mads = "d6bdc55b-bd94-5012-933c-1f73fc2ee992"
Expand All @@ -25,7 +24,6 @@ XGBoost = "009559a3-9522-5dbb-924b-0b6ed2b22bb9"
[compat]
DelimitedFiles = "1"
DocumentFunction = "1"
FileIO = "1"
Gadfly = "1"
JLD = "0.10, 0.11, 0.12, 0.13, 0.14, 1"
Mads = "1.5.1, 1.6"
Expand Down
3 changes: 1 addition & 2 deletions scripts/SmartTensors_Genie.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import StipplePlotly
import CSV
import JLD
import JLD2
import FileIO
import DataFrames
import NMFk
import Mads
Expand Down Expand Up @@ -64,7 +63,7 @@ function load_data!(smarttensors_model::DataModel, filename)
if e == ".csv"
data_input = CSV.read(joinpath(datasetdir, f), DataFrames.DataFrame)
elseif e == ".jld2"
data_input = FileIO.load(joinpath(datasetdir, f), "df")
data_input = JLD2.load(joinpath(datasetdir, f), "df")
elseif e == ".jld"
data_input = JLD.load(joinpath(datasetdir, f), "df")
end
Expand Down

0 comments on commit 92c4f3a

Please sign in to comment.