Skip to content

Commit

Permalink
Merge e58e9a6 into da906c9
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephMontoya-TRI committed May 23, 2022
2 parents da906c9 + e58e9a6 commit f8eb37b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion camd/agent/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def get_hypotheses(self, candidate_data, seed_data=None):

self.candidate_data = candidate_data.drop(columns=["target"], axis=1)
self.seed_data = seed_data
X_seed = seed_data.drop(columns=["target"], axis=1)
X_seed = seed_data.drop(columns=["target"], axis=1, errors='ignore')
y_seed = seed_data["target"]
steps = [
("scaler", StandardScaler()),
Expand Down

0 comments on commit f8eb37b

Please sign in to comment.