“The future ain’t what it used to be.”

-Yogi Berra

  • 2 Posts
  • 45 Comments
Joined 2 years ago
cake
Cake day: July 29th, 2023

help-circle










  • I spent a summer canning tomatoes to realize I don’t really use that many cans of tomatoes. I’ll use fresh tomatoes, but we literally had to change our diet because we had canned enough tomatoes that we had to re-arrange the kitchen. We had tomatoes in cans for literally years after that summer.

    #1 tip for starting gardeners: take a week or two and actually write down what the hell you actually eat that is a vegetable, and grow that. I’m not saying don’t branch out and try new things, but focus on serving yourself and growing things you actually eat. If you don’t eat like… 20+ tomatoes a week, you probably don’t need more than 1 or 2 tomato plants, if even that.

    You’ll be way more successful/ happy/ satisfied/ likely to continue or advance as a gardener if it doesn’t feel like a chore and its serving you.



  • Cross validation is a way of calculating the likely uncertainty of any model (it doesn’t have to be a machine learning model).

    A common cross validation approach is LOOCV (leave one out cross validation), for small datasets. Another is K-folds cross validation. In any case, the basics is to leave out “some amount” of your training data, totally removed from the training process, then you train your model, then you validate it on the trained model. You then repeat this process over the k-folds or each unit of your training data to create a valid uncertainty.

    So a few things. First, this a standard approach in machine learning, because once you get stop making the assumptions of frequentism (and you probably should), you no longer get things like uncertainty for free, because the assumptions aren’t met.

    In some approaches in machine learning, this is necessary because there really isn’t a tractable way to get uncertainty from the model (although in others, like random forest, you get cross validation for free).

    Cross validation is great because you really don’t need to understand anything about the model itself; you just implement the validation strategy and you get a valid answer for the model uncertainty.