Skip to content

Commit

Permalink
Issue #17: Remove non-default plotting specs
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark2000 committed Jan 5, 2024
1 parent 805e8de commit fe54e1d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion examples/plotting_tools/plot_mcts_hyperparams.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

SEP = os.path.sep

plt.style.use("seaborn-colorblind")
matplotlib.rcParams["lines.linewidth"] = 2


Expand Down
2 changes: 0 additions & 2 deletions examples/plotting_tools/process_ga_curves.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
from deap import base, creator
from matplotlib import pyplot as plt

plt.style.use("seaborn-colorblind")

creator.create("FitnessMax", base.Fitness, weights=(1.0,))
creator.create("Individual", list, fitness=creator.FitnessMax)

Expand Down
3 changes: 0 additions & 3 deletions src/bsk_rl/training/mcts/mcts_train.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@
SmallBodyRolloutPolicy,
)

plt.style.use("tableau-colorblind10")
plt.style.use("seaborn-colorblind")


def mcts_batch(
data_directory,
Expand Down

0 comments on commit fe54e1d

Please sign in to comment.