Parameter¶
- class audobject.Parameter(*, value_type=<class 'str'>, description='', value=None, default_value=None, choices=None, version=None)[source]¶
Single parameter.
A parameter steers the behaviour of a an object (e.g. tuning a model). It has a specific type and default value, possibly one of a set of choices. It is possible to bound a parameter to a specific version (range).
- Parameters
- Raises
TypeError – if value has an invalid type
ValueError – if value is not in choices
Examples
>>> foo = Parameter( ... value_type=str, ... description='some parameter', ... default_value='bar', ... choices=['bar', 'Bar', 'BAR'], ... version='>=1.0.0,<2.0.0', ... ) >>> # check version >>> '1.5.0' in foo True >>> '2.0.0' in foo False >>> # get/set value >>> foo.value 'bar' >>> foo.set_value('Bar') >>> foo.value 'Bar' >>> # set invalid value >>> try: ... foo.set_value('par') ... except ValueError as ex: ... print(ex) Invalid value 'par', expected one of ['bar', 'Bar', 'BAR'].
__contains__()¶
arguments¶
- Parameter.arguments¶
Returns arguments that are serialized.
- Returns
Dictionary of arguments and their values.
- Raises
RuntimeError – if arguments are found that are not assigned to attributes of the same name
Examples
>>> import audobject.testing >>> o = audobject.testing.TestObject('test', point=(1, 1)) >>> o.arguments {'name': 'test', 'point': (1, 1)}
borrowed_arguments¶
- Parameter.borrowed_arguments¶
Returns borrowed arguments.
- Returns
Dictionary with borrowed arguments.
id¶
- Parameter.id¶
Object identifier.
The ID of an object ID is created from its non-hidden arguments.
- Returns
object identifier
Examples
>>> class Foo(Object): ... def __init__(self, bar: str): ... self.bar = bar >>> foo1 = Foo('I am unique!') >>> foo1.id '893df240-babe-d796-cdf1-c436171b7a96' >>> foo2 = Foo('I am different!') >>> foo2.id '9303f2a5-bfc9-e5ff-0ffa-a9846e2d2190' >>> foo3 = Foo('I am unique!') >>> foo1.id == foo3.id True
is_loaded_from_dict¶
- Parameter.is_loaded_from_dict¶
Check if object was loaded from a dictionary.
Returns
True
if object was initialized from a dictionary, e.g. after loading it from a YAML file.- Returns
True
if object was loaded from a dictionary,otherwise
False
set_value()¶
- Parameter.set_value(value)[source]¶
Sets a new value.
Applies additional checks, e.g. if value is of the expected type.
- Parameters
value (
Any
) – new value- Raises
TypeError – if value has an invalid type
ValueError – if value is not in choices
short_id¶
- Parameter.short_id¶
Short object identifier.
The short ID consists of eight characters and is created from its non-hidden arguments.
- Returns
short object identifier
Examples
>>> class Foo(Object): ... def __init__(self, bar: str): ... self.bar = bar >>> foo1 = Foo('I am unique!') >>> foo1.id '893df240-babe-d796-cdf1-c436171b7a96' >>> foo1.short_id '171b7a96' >>> foo2 = Foo('I am different!') >>> foo2.short_id '6e2d2190' >>> foo3 = Foo('I am unique!') >>> foo1.short_id == foo3.short_id True
to_dict()¶
- Parameter.to_dict(*, include_version=True, flatten=False, root=None)¶
Converts object to a dictionary.
Includes items from
audobject.Object.arguments
. If an argument has a resolver, its value is encoded. Usually, the object can be re-instantiated usingaudobject.Object.from_dict()
. However, ifflatten=True
, this is not possible.- Parameters
- Return type
Dict
[str
,Union
[bool
,datetime
,dict
,float
,int
,list
,None
,str
]]- Returns
dictionary that represent the object
Examples
>>> import audobject.testing >>> o = audobject.testing.TestObject('test', point=(1, 1)) >>> o.to_dict(include_version=False) {'$audobject.core.testing.TestObject': {'name': 'test', 'point': [1, 1]}} >>> o.to_dict(flatten=True) {'name': 'test', 'point.0': 1, 'point.1': 1}