Skip to content

Commit 627a847

Browse files
committed
Change : to _ in sys_id filenames to avoid issues
1 parent d926fc2 commit 627a847

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

examples/system_identification/data/dataset/box2d_dim_N:15_cf:0.1_radius:0.05_side:0.5.jld2 renamed to examples/system_identification/data/dataset/box2d_dim_N_15_cf_0.1_radius_0.05_side_0.5.jld2

File renamed without changes.

examples/system_identification/data/dataset/box_dim_N:35_cf:0.1_radius:0.0_side:0.5.jld2 renamed to examples/system_identification/data/dataset/box_dim_N_35_cf_0.1_radius_0.0_side_0.5.jld2

File renamed without changes.

examples/system_identification/data/dataset/hardwarebox_dim_N:400_sample_S:1.jld2 renamed to examples/system_identification/data/dataset/hardwarebox_dim_N_400_sample_S_1.jld2

File renamed without changes.

examples/system_identification/data/dataset/hardwarebox_dim_N:400_sample_S:7.jld2 renamed to examples/system_identification/data/dataset/hardwarebox_dim_N_400_sample_S_7.jld2

File renamed without changes.

examples/system_identification/data/dataset/sphere_dim_N:15_cf:0.1_radius:0.5.jld2 renamed to examples/system_identification/data/dataset/sphere_dim_N_15_cf_0.1_radius_0.5.jld2

File renamed without changes.

examples/system_identification/methods/utils.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,19 +128,19 @@ function datafilename(model::Symbol; kwargs...)
128128
end
129129

130130
function datafilenamesphere(; N::Int=10, friction_coefficient=0.1, radius=0.5)
131-
"sphere_dim_N:$(N)_friction_coefficient:$(friction_coefficient)_radius:$(radius).jld2"
131+
"sphere_dim_N_$(N)_friction_coefficient_$(friction_coefficient)_radius_$(radius).jld2"
132132
end
133133

134134
function datafilenamebox2D(; N::Int=10, friction_coefficient=0.1, radius=0.05, side=0.50)
135-
"box2D_dim_N:$(N)_friction_coefficient:$(friction_coefficient)_radius:$(radius)_side:$(side).jld2"
135+
"box2D_dim_N_$(N)_friction_coefficient_$(friction_coefficient)_radius_$(radius)_side_$(side).jld2"
136136
end
137137

138138
function datafilenamebox(; N::Int=10, friction_coefficient=0.1, radius=0., side=0.50)
139-
"box_dim_N:$(N)_friction_coefficient:$(friction_coefficient)_radius:$(radius)_side:$(side).jld2"
139+
"box_dim_N_$(N)_friction_coefficient_$(friction_coefficient)_radius_$(radius)_side_$(side).jld2"
140140
end
141141

142142
function datafilenamehardwarebox(; N::Int=10, s=1)
143-
"hardwarebox_dim_N:$(N)_sample_S:$(S).jld2"
143+
"hardwarebox_dim_N_$(N)_sample_S_$(S).jld2"
144144
end
145145

146146
function initial_state(model::Symbol; kwargs...)

0 commit comments

Comments
 (0)