Benchmarks PARROT against simpler alignment methods
Examples
# \donttest{
vdata <- generate_parrot_validation_data(n_nodes = 30, n_anchors = 5)
comparison <- compare_parrot_baselines(vdata)
#> Running PARROT...
#> Running feature-only baseline...
#> Running anchor propagation baseline...
#>
#> METHOD COMPARISON
#> =================
#> method runtime top1_accuracy top5_accuracy
#> parrot PARROT 0.2057857513 0.5000000 0.9666667
#> feature_only Feature-Only 0.0003609657 0.7000000 NA
#> anchor_prop Anchor-Propagation 0.0047357082 0.1666667 NA
#> mrr
#> parrot 0.7166667
#> feature_only NA
#> anchor_prop NA
# }