Predictions on data without a y
#5882
Answered
by
rusty1s
anthonysirico
asked this question in
Q&A
-
So, for a real world scenario, what is the best possible way of performing predictions? The way I approached is for my test set is here:
What changes should be made for when your prediction set does not have a |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Nov 3, 2022
Replies: 1 comment 3 replies
-
If you do not have ground-truth labels to compare against, all you can do is return the |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
anthonysirico
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you do not have ground-truth labels to compare against, all you can do is return the
predictions
, and use them for your use-case. Let me know if I am misunderstanding your question.