BestIoUWith
- class hybrid_learning.fuzzy_logic.predicates.custom_ops.BestIoUWith(*in_keys, batch_dims=None, **kwargs)[source]
Bases:
AbstractFuzzyIntersectGiven two stacked sets of masks
masks_aandmasks_b, calculate for each mask inmasks_athe best IoU with any mask inmasks_b. Precisely, all entries inmasks_aandmasks_bare compared via IoU by varying over all dimensions except formask_dimsandbatch_dims. The returned result is the stacked best IoUs, one for each mask inmasks_a. The input masks are assumed to have the same dimensionality in themask_dims. The output mask will have the same size asmasks_aonly withmask_dimssqueezed.Consider
mask_a.size()==[batch, stack_a, h, w]andmask_b.size()==[batch, stack_b, h, w]. The settingsmask_dim=(-2, -1)(handw) andbatch_dim=(0,)then mean:The output will have size
[batch, stack_a].The entry at index
[batch_idx, s_a]is the maximum of IoUs between the maskmasks_a[batch_idx, s_a]and maskmasks_b[batch_idx, s_b]for any values_b in \range(stack_b).
Public Data Attributes:
The string symbol of this class (override for sub-classes).
Inherited from : py: class:AbstractFuzzyIntersect
ARITYThe arity of the operation.
settingsSettings to reproduce the instance.
setting_defaultsDefaults used for
settings.Inherited from : py: class:Merge
The string symbol of this class (override for sub-classes).
ARITYThe arity of the operation.
IS_COMMUTATIVEWhether instances are equivalent to ones with permuted
in_keys.is_variadicWhether the instance is variadic.
settingsSettings to reproduce the instance.
setting_defaultsDefaults used for
settings.pretty_op_symbName of the operation symbol suitable for filenames etc.
childrenThe input keys which are child operations.
all_childrenAll children operations in the flattened computational tree, sorted depth first.
constsThe constant string keys in the input keys.
operation_keysThe list of keys used for this parent operation in original order (constants and children output keys).
all_in_keysAll string input keys both of self and of all child operations.
all_out_keysOutput keys of self and all child operations.
Inherited from : py: class:DictTransform
settingsSettings to reproduce the instance.
Inherited from : py: class:Transform
IDENTITY_CLASSThe identity class or classes for composition / addition.
settingsSettings to reproduce the instance.
Public Methods:
torch_operation(masks_a, masks_b)Calculate for each mask in
masks_awith those inmasks_bat same non-stack dims.Inherited from : py: class:AbstractFuzzyIntersect
torch_intersect(*masks)torch_union(*masks)torch_intersect_proportion(*masks[, iou, ...])Calculate to what degree
mask_ais covered bymask_b.Inherited from : py: class:TorchOperation
operation(annotation_vals)Calculate the predicate output.
Inherited from : py: class:Merge
to_infix_notation([sort_key, ...])Return an infix str encoding equal for differently sorted operations.
to_str(**infix_notation_kwargs)Alias for
to_infix_notation().to_pretty_str(**infix_notation_kwargs)Same as
to_str()but using pretty operation names suitable for filenames etc.to_repr([settings, defaults, sort_key, ...])Return str representation which can be used to reproduce and compare the instance.
treerecurse_replace_keys(**replace_map)Return a new formula with all occurences of variables in
replace_mapreplaced and else identical settings.treerecurse(fun)Apply the given function recursively to this and all children instances.
apply_to(annotations[, keep_keys])Apply this operation to the
annotationsdict.variadic_apply_to(annotations)Return the result of operation on the values/items of a mapping or sequence of arbitrary length.
operation(annotation_vals)Calculate the predicate output.
Inherited from : py: class:DictTransform
apply_to(annotations[, keep_keys])Apply this operation to the
annotationsdict.Inherited from : py: class:Transform
apply_to(annotations[, keep_keys])Apply this operation to the
annotationsdict.Special Methods:
__init__(*in_keys[, batch_dims])Init.
Inherited from : py: class:AbstractFuzzyIntersect
__init__(*in_keys[, batch_dims])Init.
Inherited from : py: class:Merge
__init__(*in_keys[, batch_dims])Init.
__str__()Return str(self).
__repr__()Call
to_repr()without sorting.__eq__(other)Two merge operations are considered equal, if their normalized representations coincide.
__copy__()Return a deep copy of self using settings.
__call__(annotations[, keep_keys])Call method modifying a given dictionary.
Inherited from : py: class:DictTransform
__call__(annotations[, keep_keys])Call method modifying a given dictionary.
Inherited from : py: class:Transform
__repr__()Call
to_repr()without sorting.__eq__(other)Two merge operations are considered equal, if their normalized representations coincide.
__copy__()Return a deep copy of self using settings.
__add__(other)Return a flat composition of
selfwithother.__radd__(other)Return a flat composition of
otherandself.__call__(annotations[, keep_keys])Call method modifying a given dictionary.
- __init__(*in_keys, batch_dims=None, **kwargs)[source]
Init.
Hand over input keys either as str or as a Merge operation of str.
- Parameters
in_keys – sequence of either
Mergeoperation instances or strings with placeholders for the input keysout_key – key for the output of this operation; used to init
out_keyoverwrite – on call, whether to overwrite the value at
out_keyin the given dict if the key already exists; raise if key exists andoverwriteis true; saved inoverwrite.replace_none – if not
None, the value to replace anyNonevalues with; seereplace_nonesymb – override the
SYMBfor this instancekeep_keys – intermediate output keys to add to call output; see
keep_keyscache_duplicates – whether outputs of children with identical keys should be cached and reused; see
cache_duplicates_variadic – the preferred way to specify this argument is
variadic_(); see there for details