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
Copy file name to clipboardExpand all lines: docs/src/tutorials/warcraft.jl
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -15,22 +15,22 @@ b = WarcraftBenchmark()
15
15
# These benchmark objects behave as generators that can generate various needed elements in order to build an algorithm to tackle the problem.
16
16
# First of all, all benchmarks are capable of generating datasets as needed, using the [`generate_dataset`](@ref) method.
17
17
# This method takes as input the benchmark object for which the dataset is to be generated, and a second argument specifying the number of samples to generate:
18
-
dataset =generate_dataset(b, 50)
18
+
dataset =generate_dataset(b, 50);
19
19
20
-
# We obtain a vector of [`DataSample`](@ref) object, which contains all needed data for the problem.
20
+
# We obtain a vector of [`DataSample`](@ref) objects, containing all needed data for the problem.
21
21
# Subdatasets can be created through regular slicing:
0 commit comments