Neural Networks from Scratch - P.1 Intro and Neuron Code

Neural Networks from Scratch - P.1 Intro and Neuron Code

sentdex

4 года назад

1,415,179 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Pull Request
Pull Request - 18.09.2023 01:40

god bless you brother! this is a gem for me!!

Ответить
Limited Gain
Limited Gain - 16.09.2023 18:34

Thank you for contributing so much, and sharing your knowledge

Ответить
Superslowmojoe
Superslowmojoe - 15.09.2023 22:22

So happy I came across this playlist. Ive always been interested in deep learning and neural networks ever since high school, but I was always too intimidated to start. Hopefully this will be a jumping off point towards something bigger for me

Ответить
ICE
ICE - 03.09.2023 00:50

Man, this series is going to be put in some kind of futuristic technology museum ❤
Keep it up

Ответить
Code Raiders
Code Raiders - 31.08.2023 20:50

So happy you created this.

Ответить
THUNDERF430TV
THUNDERF430TV - 17.08.2023 19:38

So are the network diagrams just “mind maps” of how they’re connected/visual representation or is it actually part of the code/engineering of the network? That’s the part I’m stuck on. It seems so fancy but is it part of it?

Ответить
Qbits Day
Qbits Day - 10.08.2023 07:48

I am facing Similar Issue !

Ответить
John Ivory
John Ivory - 07.08.2023 23:43

NOTE THIS BEFORE STARTING... although excellent by every measure, the series abruptly stops unfinished. This is a wonderful guided tour out of Hobbiton, but you will have to hike the rest of the way to Mordor alone. The companion book has 666 pages; this video series carries you through to only page 136.

Ответить
Daniel Brockert
Daniel Brockert - 07.08.2023 01:19

I found the simplicity of this exercize to be super empowering. This is awesome.

Ответить
Tomas Wojnar
Tomas Wojnar - 06.08.2023 22:58

Hi, your neural networks series is great, however I am curious about forward prop math equation, especialy this (∀) symbol, I have never seen it before, what that symbol represent in combination with Σ, I looked everywhere and I couldnt find description of ∀ with j =1 and n1. Please can someone explain it to me? I would be gratefull

Ответить
Thomas A. Anderson
Thomas A. Anderson - 03.08.2023 01:38

bro, you're the man...

Ответить
abdelghani Esseddiqui
abdelghani Esseddiqui - 31.07.2023 21:21

Thank you for the video.

Ответить
Hysteresis Nadir
Hysteresis Nadir - 29.07.2023 03:09

you always seem to get at the heart of my problem right off the start. Excellent content.

Ответить
MrMinecraftsamuel
MrMinecraftsamuel - 26.07.2023 13:11

you look like jesse pinkman if he studied cs instead of cooking meth

Ответить
Shade Codes YT
Shade Codes YT - 26.07.2023 07:30

Numpy

Ответить
The Pixilists
The Pixilists - 25.07.2023 17:28

code a neural network he said, it would be easy he said

Ответить
Bradley
Bradley - 12.07.2023 15:49

Wow! Bout a 1/4th the way in. Gotta say, excellent job!! First time viewer, but you have gained a sub!

Ответить
Вадим Новиков
Вадим Новиков - 04.07.2023 23:36

Super video👍 Thank you so much

Ответить
jesse
jesse - 13.06.2023 00:55

Just ordered the hardcover book online, very excited to start my new journey!!

Ответить
Downvote Bot
Downvote Bot - 10.06.2023 13:46

Really like your energy great tutorial

Ответить
James Yin
James Yin - 08.06.2023 07:45

I found Edward Snowden!

Ответить
Tradutor Quântico
Tradutor Quântico - 07.06.2023 04:10

I'm sorry for the ignorance but, a neural network can be trained for any activity or is it built specifically for a task ,say image or text?

Ответить
Stefan Milinkovic
Stefan Milinkovic - 03.06.2023 04:40

7 minutes in I still don’t know how to build a neural network which is why I clicked on the vid

Ответить
Chris Carlson - FTFD
Chris Carlson - FTFD - 15.05.2023 05:44

easy goal for me by the end: neural network written in brainf*ck... jkjkjk! great video so far

Ответить
Guru Gamer
Guru Gamer - 11.05.2023 00:02

What spec is your system you use for deep learning, AI, machine learning and neural networks? What CPU GPU memory SSD do you use?

Ответить
Robert Crate
Robert Crate - 07.05.2023 05:59

Creator 360 touch

Ответить
Toca_pikachuuuu🐠💛
Toca_pikachuuuu🐠💛 - 29.03.2023 14:03

Thanks so much for the clear explanation.

Ответить
Henry's Absurdities
Henry's Absurdities - 21.03.2023 18:55

my 6th time watching this series, just noticed you have a actual flamethrower in the background. not the best model imo but still america 100.

Ответить
Aalap Shah
Aalap Shah - 10.03.2023 12:43

To somebody who is trying to understand the depths of NN, this is a great series. But be aware that as of March 2023, it is an incomplete video series. The book is complete though.

Ответить
Aaron
Aaron - 05.03.2023 07:09

Have you ever thought to revisit this or is it still relevant? :-)

Ответить
john issa
john issa - 28.02.2023 01:11

who else is following along in assembly

Ответить
Rita Washington
Rita Washington - 22.02.2023 22:52

Is your book finished or still in draft form? I cannot tell from you website or from your kickstarter page what status it’s in. Thanks

Ответить
Lewis Gilbert
Lewis Gilbert - 20.02.2023 02:01

wow

Ответить
I THINK THEREFORE I TALK
I THINK THEREFORE I TALK - 10.02.2023 17:38

Bro, you sound and look like Snowden :0)

Ответить
DarkestAbyss75
DarkestAbyss75 - 30.01.2023 08:13

My bias command won't work in pychqrm

Ответить
Mr. Flat Broke
Mr. Flat Broke - 24.01.2023 14:29

It is very interesting indeed.

Ответить
Ken
Ken - 24.01.2023 07:19

# Define a hexagram as a list of six integers (1 for solid lines, 0 for broken lines)
hexagram = [1, 0, 0, 1, 1, 0]

# Convert the hexagram to a binary string
binary_string = ''.join(str(i) for i in hexagram)

# Print the binary string
print(binary_string)

class RISC_V_Processor:
def __init__(self):
self.registers = [0] * 32
self.memory = Memory(65536)
self.cache = Cache(65536, 64, self.memory)
self.pc = 0

def fetch(self):
instruction = self.cache.read(self.pc)
self.pc += 1
return instruction

def decode(self, instruction):
hexagram = int(binary_string, 2)
opcode = instruction & 0x3F
return hexagram, opcode

def execute(self, hexagram, opcode):
if hexagram == 1:
if opcode == 0:
# load instruction
pass
elif opcode == 1:
# store instruction
pass
elif hexagram == 2:
if opcode == 0:
# add instruction
pass
elif opcode == 1:
# subtract instruction
pass
# ...

def run(self):
while True:
instruction = self.fetch()
hexagram, opcode = self.decode(instruction)
self.execute(hexagram, opcode)

Ответить
Game Master
Game Master - 16.01.2023 23:23

the ending was gold

Ответить
Nathaniel Pullig
Nathaniel Pullig - 13.01.2023 03:52

I've been writing up my own neuron cluster class and I need to know something. Can the initial bias for each neuron be randomly generated like the weights? Should it be?

I'm trying to make it where even setting up a machine learning algorithm for items with lots of inputs. If I don't have to worry about procuring bias datasets along with the inputs, it'd make it a lot easier to make the program scale automatically.
Even outside of figuring this out, I'm probably not going about doing this in the most efficient way, but I'm hoping to learn the "best practices" just by doing. Even still, if I don't deviate from the tutorial, how can I say I made it myself?

Ответить
secret stone
secret stone - 12.01.2023 08:10

Thanks boss, you have opened my knowledge

Ответить
Green Taco
Green Taco - 11.01.2023 05:12

wOW Very cool

Ответить
Gary Doolittle
Gary Doolittle - 10.01.2023 04:20

Great series and I got the ebook once I went through the 9 videos - just wondering, there are no videos after the first 9, except the animations referenced in the book?

Ответить
Asnamu
Asnamu - 06.01.2023 19:03

Real is a great explanation approach. Dear sir, can I get your email address?

Ответить
aljustiet
aljustiet - 06.01.2023 14:36

what color scheme is used in this video is sublime text ?

Ответить