10.8: Neural Networks: Updating Code to ES6 - The Nature of Code

  Рет қаралды 39,031

The Coding Train

The Coding Train

Күн бұрын

Пікірлер
@gabrielomarmasi3673
@gabrielomarmasi3673 7 жыл бұрын
Viking beard was required to build a neural network
@puronectar4597
@puronectar4597 4 жыл бұрын
you are an amazing teacher can't stop watching and the better part is that I am being able to code this in python and FINALLY understand!
@grainfrizz
@grainfrizz 7 жыл бұрын
I'm a simple guy. I see "Daniel and Neural Networks", I click.
@cuchitp
@cuchitp 6 жыл бұрын
I've watched your videos for years. I reckon since a tutor suggested we watch your videos, whilst I was doing a masters in IT, back in 2014. I immediately liked you. It was like "wow!! "Daniel is a skinny nerd like me...and he's most likely vegetarian(I'm vegan)"... "and we both 'like' computers or at least what one can do with them"...But Daniel's gift from God Creator ( I call Him YHWH Elohim) is that he teaches in a very simple and humble way.But POWERFUL! I reckon that was the most endearing trait I got from Daniel. A 'never give up attitude' and "I really don't understand everything, but I will do my best to LEARN and teach" It is brilliant!! So humane. Thank you Daniel. I love maths and i got seduced by coding way back when I saw PC's arrive at desktops, and got trapped by corporate usage of IT, but with your teachings, I see new beginnings in electronic arts, IT , AI and educating people of the subtleties which prevent many of us from loving maths and computers...
@mastermystery9335
@mastermystery9335 7 жыл бұрын
I just love this guy
@tmstani23
@tmstani23 7 жыл бұрын
OMG I'm so excited! This is going to be so awesome!!
@funkyb6598
@funkyb6598 6 жыл бұрын
Been enjoying the series. Well organized and fun. Thumbs up(s).
@dominicforster706
@dominicforster706 7 жыл бұрын
Nice to hear that you continue with this series. I might be wrong with this but shouldnt you initiliaze the matrix using 1 instead of 0 to have it being a multiplication neutral matrix instead of a addition neutral matrix?
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
Probably a good point yes. I'll address this when I get to the neural network example itself. Thank you!
@mo3bius58
@mo3bius58 7 жыл бұрын
Just to mention, the new functions like map/reduce/filter can shorten the code, but they may be slower than a traditional loop! So for coding a neural network library, I would stick to loops.
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
Oh, thanks for this info, good to know!
@marcocastellano2451
@marcocastellano2451 5 жыл бұрын
as a functional programmer I love map/reduce/filter and I would totally go with a loop on this sort of use. great tip Mo3bius.
@chickenzwings
@chickenzwings 7 жыл бұрын
I love you Dan Shiffman
@maskman4821
@maskman4821 6 жыл бұрын
You are the best!!!
@8eck
@8eck 4 жыл бұрын
Whoa half a year was required to get to matrix multiplications :D Time and space jump :D
@fxbuddy4U
@fxbuddy4U 7 жыл бұрын
Hello buddy can u please help me ... how i create my concept strong in javascript currently i m working on node.js so please tell me how i build logics i am watched your pervious video. HOW I GOOD IN API DEVELOPMENT
@pedrovelazquez138
@pedrovelazquez138 5 жыл бұрын
Thank you Dan.
@marcocastellano2451
@marcocastellano2451 5 жыл бұрын
even in es6, classes are not needed, nor would I use them when functions work fine. Classes require the 'new' keyword to be used, using functions removes this. Functions can have functions exposed as methods.
@ashokvkannan2611
@ashokvkannan2611 7 жыл бұрын
Can you please tell me that how to display json data in html table?
@ifelseprog
@ifelseprog 7 жыл бұрын
ashok v kannan use JSON.parse() function, it'll create an object from your JSON data from it. Then you'll be able to do your html and javascript stuff :)
@volfegan
@volfegan 7 жыл бұрын
I am just wandering, but is there any real utility on neural networks with javascript? All I have been studing is written for python.
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
It's not an ideal environment for neural networks by any means, not even close. I'm doing this as a means of learning and demonstrating these algorithms in the browser. And as I'll soon demonstrate a lot can be done "for real" with new libraries like deeplearnjs.org!
@volfegan
@volfegan 7 жыл бұрын
I understand. I read part of the documentation of deeplearn.js and see some of its application, like using the computer camera to identify things (I though that was not viable). Still, the world is never perfect and someone using a old cellphone visiting a website that use this will be frustrated. But than again, in the future people will say: "Why are they arguing about javascript & machine learning in a browser? They really used classical computational personal systems instead of hyperdimensional cloud processing, how primitive!"
@shrangisoni8758
@shrangisoni8758 6 жыл бұрын
@@volfegan what's wrong with javascript or nodejs ? It's fast and all things can be done in it just like python..i always wonder why python is so recommended and not javascript
@volfegan
@volfegan 6 жыл бұрын
@@shrangisoni8758 just read my other comment replying to The Coding Train. I like python and javascript, but I use them for separated things. I recommended knowing both languages and more.
@charbelsarkis3567
@charbelsarkis3567 7 жыл бұрын
Are you going to actually make a neural network app that learns something
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
Eventually yes!
@0xTim
@0xTim 7 жыл бұрын
Is the matrix lib code already on GitHub? Can't find it.
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
It's here but doesn't 100% match what I'm doing on the channel just yet: github.com/shiffman/Neural-Network-p5
@0xTim
@0xTim 7 жыл бұрын
The Coding Train Thank you!
@honestaditya6860
@honestaditya6860 7 жыл бұрын
Hey i wanna do a genetic evolution project on an android game... Can you tell where to start.....?
@cuchitp
@cuchitp 6 жыл бұрын
at function setup(){} - it' none negotiable under this framework just as main is in most "C" like languages.
@honestaditya6860
@honestaditya6860 7 жыл бұрын
I wanna develop a genetic evolution project on android game and i dont know where to start. Can anyone help me.... I wanna use genetic evolution for the game..... Plz help me
@ariseyhun2085
@ariseyhun2085 7 жыл бұрын
Do you think you will ever use TypeScript?
@wolfisraging
@wolfisraging 7 жыл бұрын
Whats your ide??? Plz somebody tell
@GLRaema
@GLRaema 7 жыл бұрын
Atom
@TheCodingTrain
@TheCodingTrain 7 жыл бұрын
This workflow video might help: kzbin.info/www/bejne/fouXdWatebeUm8U
@wolfisraging
@wolfisraging 7 жыл бұрын
Thnk u very much, Big fan😊
@JoshuaKisb
@JoshuaKisb 6 жыл бұрын
i was like whoa awesome viking beard. surprised me for a second. apparently there was a break... anyways whats that this dot song. ts catchy
@neillunavat
@neillunavat 4 жыл бұрын
hello, I am 2 years from the future (flying cars aren't common yet so dont ask). Anyways, the this dot song is also from youtube if you search it, you'll find it. please delete 2020
@TejasIsAmazing
@TejasIsAmazing 3 жыл бұрын
@@neillunavat Hello, i am from one year future more forward, and flying cars are still not common yet. And Also 2020 was definitely a bad year, and 2021 isint that much different, except its a bit less dramatic.
@rickmonarch4552
@rickmonarch4552 5 жыл бұрын
badass cool :3
@jeroenkodde2438
@jeroenkodde2438 5 жыл бұрын
bit suprised by the beard...
@trappedcat3615
@trappedcat3615 7 жыл бұрын
Lebab
10.9: Neural Networks: Matrix Math Part 3 - The Nature of Code
28:11
The Coding Train
Рет қаралды 62 М.
10.6: Neural Networks: Matrix Math Part 1 - The Nature of Code
18:13
The Coding Train
Рет қаралды 137 М.
Hilarious FAKE TONGUE Prank by WEDNESDAY😏🖤
0:39
La La Life Shorts
Рет қаралды 44 МЛН
OCCUPIED #shortssprintbrasil
0:37
Natan por Aí
Рет қаралды 131 МЛН
10.14: Neural Networks: Backpropagation Part 1 - The Nature of Code
19:33
The Coding Train
Рет қаралды 188 М.
10.3: Neural Networks: Perceptron Part 2 - The Nature of Code
27:42
The Coding Train
Рет қаралды 152 М.
Coding Challenge 180: Falling Sand
23:00
The Coding Train
Рет қаралды 1 МЛН
10.11: Neural Networks: Matrix Class Improvements - The Nature of Code
21:40
10.15: Neural Networks: Backpropagation Part 2 - The Nature of Code
19:17
The Coding Train
Рет қаралды 102 М.
10.12: Neural Networks: Feedforward Algorithm Part 1 - The Nature of Code
27:41
10.4: Neural Networks: Multilayer Perceptron Part 1 - The Nature of Code
15:56
10.13: Neural Networks: Feedforward Algorithm Part 2 - The Nature of Code
20:20