Video není dostupné.
Omlouváme se.

Artificial neural networks (ANN) - explained super simple

Sdílet
Vložit
  • čas přidán 4. 09. 2024

Komentáře • 22

  • @danimirkin9573
    @danimirkin9573 Před 22 dny +2

    the best i have seen so far

  • @menelbenaissa9134
    @menelbenaissa9134 Před 6 dny +1

    Just magistral 👏👏

  • @gaborolah8511
    @gaborolah8511 Před 2 měsíci +1

    You are Brilliant. i could not understand the whole concept until you explained in this video.

  • @dantedt3931
    @dantedt3931 Před 9 dny +1

    Perfect!

  • @tedransom8087
    @tedransom8087 Před rokem +3

    Omg, I have tried to understand ANN without success until now. Thank you!

  • @meshackamimo1945
    @meshackamimo1945 Před 3 měsíci +1

    u r a wondeful tutor. God bless u

  • @tilestats
    @tilestats  Před 5 dny

    The notation on the left-hand side of the equations at 20:00 and 20:45 should be f(x) and not f(z).

  • @yolavictoria472
    @yolavictoria472 Před rokem +2

    Thank you, looking forward to your next video about ANN

  • @nhlanhlamnisi391
    @nhlanhlamnisi391 Před měsícem +1

    Thank you!

  • @firstkaransingh
    @firstkaransingh Před rokem +3

    Wow... Great expectation as always 👍

  • @Salvador_Dali
    @Salvador_Dali Před 11 měsíci +1

    best explanation so far! thank you. i have tried it in R using the neuralnet function with your dataset. even though i get the same coefficients with the log regression the weights and bias using the ANN are not the same. they are much lower. any idea why? =/

    • @tilestats
      @tilestats  Před 11 měsíci +1

      Did you use the exact same code as shown at 24:52?

    • @Salvador_Dali
      @Salvador_Dali Před 11 měsíci +1

      jeeez. i have, but missed the threshold. that was it! many thanks!!!

  • @shubhangivyas4537
    @shubhangivyas4537 Před měsícem

    can you please provide R code for finding values of b0 and b1

    • @tilestats
      @tilestats  Před měsícem

      It is provided at 24:51 in the video.

  • @learning_with_irving4266
    @learning_with_irving4266 Před 2 měsíci

    How are the 2.747 and 5.7 derived?

    • @tilestats
      @tilestats  Před 2 měsíci

      That is explained at 11:30 and forward.

  • @a.mo7a
    @a.mo7a Před 3 měsíci

    why using 2 output nodes? isn't P(healthy) equal to 1-P(cancer)?

    • @tilestats
      @tilestats  Před 3 měsíci +1

      True, you can use just one output node when you predict just two categories. The R code I provided generates two output nodes but if you try TensorFlow in Python, it will use just one output if you set loss='binary_crossentropy'.

    • @a.mo7a
      @a.mo7a Před 3 měsíci

      @@tilestats
      Thanks for the clarification

  • @ahmadmatjek383
    @ahmadmatjek383 Před 2 měsíci

    for the first calculation, why u get -0.251?, i get -0.26

    • @tilestats
      @tilestats  Před 2 měsíci

      I think it is just due to rounding from previous steps.