matflow.MultiPathSequence#
- class matflow.MultiPathSequence(paths, values, nesting_order=None, label=None, value_class_method=None)#
Bases:
MultiPathSequence
A sequence of values to be distributed across one or more paths.
Notes
This is useful when we would like to generate values for multiple input paths that have some interdependency, or when they must be generate together in one go.
- Parameters:
paths (Sequence[str]) – The paths to this multi-path sequence.
values (NDArray | Sequence[Sequence] | None) – The values in this multi-path sequence.
nesting_order (int) – A nesting order for this multi-path sequence. Can be used to compose sequences together.
label (str) – A label for this multi-path sequence.
value_class_method (str) – Name of a method used to generate multi-path sequence values. Not normally used directly.
Methods
Make an instance of this class from JSON (or YAML) data.
Generate values from SciPy's latin hypercube sampler:
scipy.stats.qmc.LatinHypercube
.Serialize this object as a dictionary.
Serialize this object as an object structure that can be trivially converted to JSON.
Attributes
The range indices (start and stop) to the parent element set's sequences list that correspond to the `ValueSequence`s generated by this multi-path sequence, if this object is bound to a parent element set.
The child value sequences, one for each path.
- classmethod from_json_like(json_like, shared_data=None)#
Make an instance of this class from JSON (or YAML) data.
- Parameters:
json_like – The data to deserialise.
shared_data – Shared context data.
- Return type:
The deserialised object.
- classmethod from_latin_hypercube(paths, num_samples, *, scramble=True, strength=1, optimization=None, rng=None, nesting_order=None, label=None)#
Generate values from SciPy’s latin hypercube sampler:
scipy.stats.qmc.LatinHypercube
.
- property sequence_indices: Sequence[int] | None#
The range indices (start and stop) to the parent element set’s sequences list that correspond to the `ValueSequence`s generated by this multi-path sequence, if this object is bound to a parent element set.
- property sequences: Sequence[ValueSequence]#
The child value sequences, one for each path.
- to_json_like(dct=None, shared_data=None, exclude=(), path=None)#
Serialize this object as an object structure that can be trivially converted to JSON. Note that YAML can also be produced from the result of this method; it just requires a different final serialization step.