juliasilge / juliasilge.com

My blog, built with blogdown and Hugo :link:
https://juliasilge.com/
40 stars 27 forks source link

Modeling human/computer interactions on Star Trek from #TidyTuesday with workflowsets | Julia Silge #50

Open utterances-bot opened 2 years ago

utterances-bot commented 2 years ago

Modeling human/computer interactions on Star Trek from #TidyTuesday with workflowsets | Julia Silge

Learn how to evaluate multiple feature engineering and modeling approaches with workflowsets, predicting whether a person or the computer spoke a line on Star Trek.

https://juliasilge.com/blog/star-trek/

SIRIYAK commented 2 years ago

super cool video ,thanks insight😎🙏

conlelevn commented 1 year ago

@juliasilge about the sign (plus or minus) in estimate of SVM, does it have any particular meaning?

juliasilge commented 1 year ago

@conlelevn Yes, but it depends on which level of your outcome is "first". Here the "computer" level is first and the event of interest, while "people" is the second, non-event level. You can read more about this in the yardstick documentation for the relevant metrics.

KleinWurm commented 1 year ago

Hello, many thanks for that tutorial! May I ask a question?

What happens if we mix models with hyperparameter tuning and models without hyperparameters inside the workflowset? Especially at the workflow_map() step, the function fit_resample() might not be adequate. Do you have any tips on how to use this package in the right way in this case?

juliasilge commented 1 year ago

@KleinWurm If you use tune_grid() with a model that doesn't need tuning, it will just give you a message and then go ahead and fit to the resamples; that is what I would do in your case. Notice that is what happens in this chapter for bag_cart_spec.