Skip to content

Commit 9f7d245

Browse files
Add ocf colours cycler to mae_analysis (#315)
* Add ocf colours cycler to mae_analysis * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * add color comments to color cycler in mae_analysis * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent a3c2251 commit 9f7d245

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

experiments/mae_analysis.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,26 @@
77

88
import argparse
99

10+
import matplotlib
1011
import matplotlib.pyplot as plt
1112
import numpy as np
1213
import pandas as pd
1314
import wandb
1415

16+
matplotlib.rcParams["axes.prop_cycle"] = matplotlib.cycler(
17+
color=[
18+
"FFD053", # yellow
19+
"7BCDF3", # blue
20+
"63BCAF", # teal
21+
"086788", # dark blue
22+
"FF9736", # dark orange
23+
"E4E4E4", # grey
24+
"14120E", # black
25+
"FFAC5F", # orange
26+
"4C9A8E", # dark teal
27+
]
28+
)
29+
1530

1631
def main(project: str, runs: list[str], run_names: list[str]) -> None:
1732
"""

0 commit comments

Comments
 (0)