flor
flor copied to clipboard
Propagating Expressions (Replay LSP)
Right now we propagate logging statements:
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.
So we can backfill data frames such as these: