Skip to content

Commit

Permalink
Validation set for Gradient Based Models woohoo
Browse files Browse the repository at this point in the history
  • Loading branch information
jameschapman19 committed Oct 5, 2023
1 parent a9424da commit 9b727fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cca_zoo/visualisation/scores.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def plot(self):


class JointScoreScatterDisplay(ScoreScatterDisplay):
def _create_plot(self, x, y, hue):
def _create_plot(self, x, y, hue=None, palette=None):
g = sns.jointplot(
x=x,
y=y,
Expand Down Expand Up @@ -280,7 +280,7 @@ def plot(self):


class SeparateJointScoreDisplay(SeparateScoreScatterDisplay):
def _create_plot(self, x, y, hue):
def _create_plot(self, x, y, hue=None,palette=None):
g = sns.jointplot(
x=x,
y=y,
Expand Down

0 comments on commit 9b727fd

Please sign in to comment.