Skip to content

Commit 9b4cbc5

Browse files
committed
2 parents 2c38590 + 5bdf3f6 commit 9b4cbc5

1 file changed

Lines changed: 14 additions & 4 deletions

File tree

dev/notebooks/mitigation_strategies.qmd

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ results = run_experiments(
9797
experiments;
9898
save_path=output_path,evaluate_every=evaluate_every,n_rounds=n_rounds, n_folds=n_folds, n_bootstrap=n_bootstrap, T=T
9999
)
100-
Serialization.serialize(joinpath(output_path,"results.jls"),results)
100+
Serialization.serialize(joinpath(output_path,"results_synthetic.jls"),results)
101101
```
102102

103103
```{julia}
@@ -161,7 +161,7 @@ end
161161

162162
```{julia}
163163
using Serialization
164-
results = Serialization.deserialize(joinpath(output_path,"results.jls"))
164+
results = Serialization.deserialize(joinpath(output_path,"results_synthetic.jls"))
165165
```
166166

167167
### Plots
@@ -218,7 +218,12 @@ results = run_experiments(
218218
n_bootstrap=n_bootstrap,
219219
T=T
220220
)
221-
Serialization.serialize(joinpath(output_path,"results.jls"),results)
221+
Serialization.serialize(joinpath(output_path,"results_real_world.jls"),results)
222+
```
223+
224+
```{julia}
225+
using Serialization
226+
results = Serialization.deserialize(joinpath(output_path,"results_real_world.jls"))
222227
```
223228

224229
```{julia}
@@ -283,4 +288,9 @@ for (data_name, res) in results
283288
line_charts[data_name] = plot(res)
284289
errorbar_charts[data_name] = plot(res,50)
285290
end
286-
```
291+
```
292+
293+
294+
```{julia}
295+
296+
```

0 commit comments

Comments
 (0)