Skip to content

Commit

Permalink
Rename y as target_key used for training model
Browse files Browse the repository at this point in the history
  • Loading branch information
Lalith-Sagar-Devagudi authored and blythed committed May 17, 2024
1 parent 6db4d4f commit 2cc844d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"source": [
"# <tab: SQL>\n",
"input_key = listener.outputs\n",
"select = table_or_collection.outputs(listener.predict_id).select('y', input_key)\n"
"select = table_or_collection.outputs(listener.predict_id).select(target_key, input_key)\n"
]
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ select = table_or_collection.find()
```python
# <tab: SQL>
input_key = listener.outputs
select = table_or_collection.outputs(listener.predict_id).select('y', input_key)
select = table_or_collection.outputs(listener.predict_id).select(target_key, input_key)
```
Loading

0 comments on commit 2cc844d

Please sign in to comment.