Explain why [50,44,-12] gives 3 (UK) in the web-app sample #704
Replies: 1 comment
-
|
I think the difference is most likely due to changes in the training environment rather than an issue with your code. The prediction isn't hardcoded it's generated by the logistic regression model after training. Even though the tutorial uses If you're using the current dataset and library versions, it's possible to get It would be helpful if the tutorial mentioned the dataset version and the package versions used when the sample output was created. That would make it much easier for others to reproduce the same result. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
In https://microsoft.github.io/ML-For-Beginners/#/3-Web-App/1-Web-App/README
we test the model with
print(model.predict([[50,44,-12]]))and the authors obtain3.I get
1by running the code.How is the difference explained?
Beta Was this translation helpful? Give feedback.
All reactions