Skip to content

Commit

Permalink
fix cca schema
Browse files Browse the repository at this point in the history
  • Loading branch information
shinnar committed May 6, 2021
1 parent 85af17e commit 6f64703
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lale/lib/sklearn/cca.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,14 @@
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Apply the dimension reduction learned on the train data.",
"type": "object",
"required": ["X"],
"required": ["X", "y"],
"properties": {
"X": {
"type": "array",
"items": {"type": "array", "items": {"type": "number"}},
"description": "Training vectors, where n_samples is the number of samples and n_features is the number of predictors.",
},
"Y": {
"y": {
"type": "array",
"items": {"type": "array", "items": {"type": "number"}},
"description": "Target vectors, where n_samples is the number of samples and n_targets is the number of response variables.",
Expand Down

0 comments on commit 6f64703

Please sign in to comment.