Skip to content

Is there a way to obtain information reconciliation efficiency? #4

@fjlc-73

Description

@fjlc-73

I tried something like

summary.number_of_exposed_bits/(summary.output_length*h2(summary.input_error))

with

def h2(x: float) -> float:
    """Binary entropy function."""
    if x <= 0 or x >= 1:
        return 0
    return -x * np.log2(x) - (1 - x) * np.log2(1 - x)

but for cascade I get an efficiency bigger than 2 and for winnow smaller than 1.

Metadata

Metadata

Assignees

No one assigned

    Labels

    questionFurther information is requested

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions