Gym Crowd Size Prediction (Model Selection) - Data Every Day

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ม.ค. 2025

ความคิดเห็น • 6

  • @MrIgorek123
    @MrIgorek123 3 ปีที่แล้ว

    I really enjoy ur coding style with processing the dataset, I learn a lot, keep doing it man!

  • @goldenmikeLeKing
    @goldenmikeLeKing 3 ปีที่แล้ว

    Hey man thanks for making these, super helpful.. ! But i still don't understand what was the error when you got a RMSE score of 0 with random forest?

    • @gcdatkin
      @gcdatkin  3 ปีที่แล้ว +1

      No problem! :)
      This was a bug. Somehow, the variable y_test got set to the values from y_pred. This way, y_test - y_pred = 0, when it should not have been so.

    • @goldenmikeLeKing
      @goldenmikeLeKing 3 ปีที่แล้ว

      @@gcdatkin thanks, can you timestamp where you fixed that mistake? I watched twice and couldn't find it.

    • @gcdatkin
      @gcdatkin  3 ปีที่แล้ว

      @@goldenmikeLeKing 15:24 When I re-run preprocess_inputs() to get back a new y_test. This overwrites whatever bad values we originally had stored in the variable.