flor icon indicating copy to clipboard operation
flor copied to clipboard

Propagating Expressions (Replay LSP)

Open rlnsanz opened this issue 7 months ago • 1 comments

Right now we propagate logging statements:

Image

But there are cases when it's natural and ergonomic to propagate expressions nested inside an anchor statement:

    return {
        "precision": flor.log("precision", results["overall_precision"]),
        "recall": flor.log("recall", results["overall_recall"]),
        "f1": flor.log("f1", results["overall_f1"]),
        "accuracy": flor.log("accuracy", results["overall_accuracy"]),
    }

We'll want to implement this feature.

rlnsanz avatar Jul 16 '25 15:07 rlnsanz

So we can backfill data frames such as these:

Image

rlnsanz avatar Jul 16 '25 15:07 rlnsanz