-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathtest_make_summary.py
44 lines (32 loc) · 1.04 KB
/
test_make_summary.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import json
from dvclive import Live
from dvclive.plots import Metric
def test_make_summary_without_calling_log(tmp_dir):
dvclive = Live()
dvclive.summary["foo"] = 1.0
dvclive.make_summary()
assert json.loads((tmp_dir / dvclive.metrics_file).read_text()) == {
# no `step`
"foo": 1.0
}
log_file = tmp_dir / dvclive.plots_dir / Metric.subfolder / "foo.tsv"
assert not log_file.exists()
def test_make_summary_is_called_on_end(tmp_dir):
live = Live()
live.summary["foo"] = 1.0
live.end()
assert json.loads((tmp_dir / live.metrics_file).read_text()) == {
# no `step`
"foo": 1.0
}
log_file = tmp_dir / live.plots_dir / Metric.subfolder / "foo.tsv"
assert not log_file.exists()
def test_make_summary_on_end_dont_increment_step(tmp_dir):
with Live() as live:
for i in range(2):
live.log_metric("foo", i)
live.next_step()
assert json.loads((tmp_dir / live.metrics_file).read_text()) == {
"foo": 1.0,
"step": 1,
}