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/parameters.rst
+11
Original file line number
Diff line number
Diff line change
@@ -49,5 +49,16 @@ Here is the full list of configuration parameters you can specify in a ``config.
49
49
``'segmentation'``
50
50
Output is an array of shape ``(256, 256)`` with values matching the class index label at that position. The classes are applied sequentially according to ``config.json`` so latter classes will be written over earlier class labels if there is overlap.
51
51
52
+
**seed**: int
53
+
Random generator seed. Optional, use to make results reproducible.
54
+
55
+
**split_vals**: list
56
+
Default: `[0.8, 0.2]`
57
+
Percentage of data to put in each category listed in split_names. Must be a list of floats that sum to one and match the length of `split-names`. For train, validate, and test data, a list like `[0.7, 0.2, 0.1]` is suggested.
58
+
59
+
**split_names**: list
60
+
Default: `['train', 'test']`
61
+
List of names for each subset of the data. Length of list must match length of `split_vals`.
62
+
52
63
**imagery_offset**: list of ints
53
64
An optional list of integers representing the number of pixels to offset imagery. For example ``[15, -5]`` will move the images 15 pixels right and 5 pixels up relative to the requested tile bounds.
0 commit comments