Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephMontoya-TRI committed May 23, 2022
1 parent 0c124e7 commit e58e9a6
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, error='ignore')
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 e58e9a6

Please sign in to comment.