Skip to content

Commit 9eb8dbd

Browse files
committed
change name
1 parent 28b830a commit 9eb8dbd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

graph_net/plot_ESt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def main(args):
264264
all_aggregated_results = {}
265265

266266
for folder_name, samples in all_results.items():
267-
print(f"\nCalculating S(t) scores for '{folder_name}'...")
267+
print(f"\nCalculating ESt scores for '{folder_name}'...")
268268

269269
es_scores = analysis_util.calculate_scores(
270270
samples,
@@ -382,7 +382,7 @@ def main(args):
382382
# Always show legend (whether aggregated curves are added or not)
383383
ax.legend(fontsize=16, loc="best")
384384

385-
output_file = os.path.join(args.output_dir, "ES_result.png")
385+
output_file = os.path.join(args.output_dir, "ESt_result.png")
386386
plt.savefig(output_file, dpi=300, bbox_inches="tight")
387387
print(f"\nComparison plot saved to {output_file}")
388388
else:

graph_net/plot_St.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def plot_St(s_scores: dict, cli_args: argparse.Namespace):
5757
ax.yaxis.grid(True, which="major", lw=0.8, ls=":", color="grey", alpha=0.5)
5858

5959
ax.legend(fontsize=16, loc="best")
60-
output_file = os.path.join(cli_args.output_dir, "S_result.png")
60+
output_file = os.path.join(cli_args.output_dir, "St_result.png")
6161
plt.savefig(output_file, dpi=300, bbox_inches="tight")
6262
print(f"\nComparison plot saved to {output_file}")
6363

@@ -72,7 +72,7 @@ def main(args):
7272
# 2. Calculate scores for each curve
7373
all_s_scores = {}
7474
for folder_name, samples in all_results.items():
75-
print(f"\nCalculating S(t) scores for '{folder_name}'...")
75+
print(f"\nCalculating St scores for '{folder_name}'...")
7676

7777
s_scores = analysis_util.calculate_scores(
7878
samples,

0 commit comments

Comments
 (0)