TensorFlow Hands-On - Classification Modelling with Python and TensorFlow 2.5 | Better Data Science

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ธ.ค. 2024

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

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

    Your videos are easy to follow along with clear instructions of why you're making each step. I'm learning a lot from you, thanks!

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

      Great to hear! Thanks for watching my videos Mitchell.

  • @donaldtrump2319
    @donaldtrump2319 8 หลายเดือนก่อน

    What's the difference between fit_transform and transform in line 17?
    X_train_scaled = scaler.fit_transform(X_train)
    X_test_scaled = scaler.transform(X_test)

  • @pramishprakash
    @pramishprakash ปีที่แล้ว

    Great video sir...

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

    Great content

  • @kaleemrujub4808
    @kaleemrujub4808 2 ปีที่แล้ว

    after printing df.sample(5) im getting this error NameError Traceback (most recent call last)
    ~\AppData\Local\Temp/ipykernel_11732/4274681390.py in
    ----> 1 df.sample(5)
    NameError: name 'df' is not defined
    can you help please

    • @BetterDataScience
      @BetterDataScience  2 ปีที่แล้ว

      Sure, define “df” before calling methods of it.