You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
throw(ArgumentError("The number of iterations must be specified with either the epochs or maxiters kwarg. Where maxiters = epochs*length(data)."))
76
-
end
64
+
65
+
# At this point, both of them should be fine; but, let's assert it.
66
+
@assert (isnothing(epochs)||isnothing(maxiters) || (maxiters != epochs *length(data))) "The number of iterations must be specified with either the epochs or maxiters kwarg. Where maxiters = epochs * length(data)."
0 commit comments