We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77d42c5 commit d026bbcCopy full SHA for d026bbc
langfun/core/eval/v2/progress_tracking.py
@@ -13,6 +13,7 @@
13
# limitations under the License.
14
"""Tracking evaluation run progress."""
15
16
+import os
17
import langfun.core as lf
18
from langfun.core.eval.v2 import example as example_lib
19
from langfun.core.eval.v2 import experiment as experiment_lib
@@ -95,7 +96,7 @@ def on_run_start(
95
96
for i, leaf in enumerate(root.leaf_nodes)
97
}
98
summary_link = Experiment.link(
- runner.current_run.output_path_for(root, 'summary.html')
99
+ os.path.join(runner.current_run.output_root, 'summary.html')
100
)
101
lf.console.write(f'Summary: {summary_link}.', color='green')
102
0 commit comments