From 360bb685479918923aa8ef24940935e6c729e9e0 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Thu, 14 Nov 2024 23:24:07 -0800 Subject: [PATCH] proposed should be orange --- selfdrive/test/process_replay/model_replay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/test/process_replay/model_replay.py b/selfdrive/test/process_replay/model_replay.py index c6720cc601..ecc245c242 100755 --- a/selfdrive/test/process_replay/model_replay.py +++ b/selfdrive/test/process_replay/model_replay.py @@ -37,8 +37,8 @@ def plot(proposed, master, title, tmp): proposed = list(proposed) master = list(master) fig, ax = plt.subplots() - ax.plot(proposed, label='PROPOSED') ax.plot(master, label='MASTER') + ax.plot(proposed, label='PROPOSED') plt.legend(loc='best') plt.title(title) plt.savefig(f'{tmp}/{title}.png')