Skip to content
Snippets Groups Projects

Post rebuttal

Merged Imported Patrick Altmeyer requested to merge post-rebuttal into main
6 files
+ 58
48
Compare changes
  • Side-by-side
  • Inline
Files
6
include("setup.jl")
# User inputs:
if ENV["DATANAME"] == "all"
if "run-all" in ARGS
datanames = ["linearly_separable", "moons", "circles", "mnist", "gmsc"]
else
datanames = [ENV["DATANAME"]]
datanames = [ARGS[findall(contains.(ARGS, "data="))] |> x -> replace(x, "data=" => "")]
end
datanames = ["linearly_separable", "moons", "circles", "mnist", "gmsc"]
# Linearly Separable
if "linearly_separable" in datanames
Loading