Measures must be float values, allow more options?
Only float
values are allowed in the measures/performance. In particular, there is no way to output:
- complex values
- strings
- collections (fixed or variable length)
If one is contrained to have single values, one option could be to allow any type and to convert collections to single values, e.g. using numpy.tobytes()
for encoding and numpy.frombuffer
for decoding.