Skip to content

Commit

Permalink
slower stagnation in training
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Creel committed Dec 26, 2023
1 parent 1bd6f6b commit 886ad20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MakeNeuralMoments.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ function MakeNeuralMoments(model::SNMmodel;TrainTestSize=1, Epochs=1000)
end
# transform stats to robustify against outliers
q50 = zeros(size(statistics,2))
q01 = similar(q50)
q99 = similar(q50)
q005 = similar(q50)
q995 = similar(q50)
iqr = similar(q50)
for i = 1:size(statistics,2)
q = quantile(statistics[:,i],[0.005, 0.25, 0.5, 0.75, 0.995])
Expand Down

0 comments on commit 886ad20

Please sign in to comment.