Neural Network Python Project - Handwritten Digit Recognition

  Рет қаралды 198,138

NeuralNine

NeuralNine

Күн бұрын

Пікірлер: 173
@ruutjormun2262
@ruutjormun2262 10 ай бұрын
Had to sign in to say thank you. Breaking down each line is incredibly useful. I also love how you continually point out that there's areas for improvement and reference us to what may be classified as overkill. It gives an excellent gateway into machine learning by linking this seemingly simple explanation to actually recognised CNNs and FC layers etc.!
@al.d9592
@al.d9592 3 жыл бұрын
This video is really, really good. Used it to resurrect my 20y old ANN skills. Will use this in my classes now!
@sachinkrao
@sachinkrao 2 жыл бұрын
Totally underrated video, perfect for people getting started with Neural Networks!
@christopherdessources
@christopherdessources 4 ай бұрын
Hi guys. Just want to help anyone following this later like I was. Instead of using tensorflow (if you aren't seeing tf.keras.datasets which is what had me stuck), you can get the mnist variable from : from keras.api.datasets import mnist. Also if you import keras.api as k_api (or whatever name i suck at naming), replace all the tf.keras with k_api. It should work the same.
@GeoffryGifari
@GeoffryGifari 9 ай бұрын
are there repositories out there where we can get training data?
@GeoffryGifari
@GeoffryGifari 9 ай бұрын
so with tensorflow keras we don't need to code the weights and biases from scratch?
@kshitijnishant4968
@kshitijnishant4968 5 ай бұрын
that's the purpose of ML frameworks like pytorch and tensorflow buddy
@lucasw158
@lucasw158 7 күн бұрын
​@@kshitijnishant4968 Such an incel response to a valid question. I'm sorry you had a rough experience in school but it's okay for people to ask questions about things
@williamikennanwosu
@williamikennanwosu 2 жыл бұрын
Thanks for a flawless video NeuralNine!
@bobvance9519
@bobvance9519 8 ай бұрын
I got this error. Changing the extension of the model to keras solved it. File "C:\Users\user\anaconda3\envs\main\Lib\site-packages\keras\src\saving\saving_api.py", line 106, in save_model raise ValueError( ValueError: Invalid filepath extension for saving. Please add either a `.keras` extension for the native Keras format (recommended) or a `.h5` extension. Use `model.export(filepath)` if you want to export a SavedModel for use with TFLite/TFServing/etc. Received: filepath=handwritten.model.
@UserError-n7n
@UserError-n7n 6 ай бұрын
I have this problem at 12:12. It keeps giving me an error in tensorflow stating “DLL load failed while importing _pywrap_tf2
@aaronfroggatt9566
@aaronfroggatt9566 Жыл бұрын
I followed this tutorial and it runs with similar loss and accuracy results to the video. My problem is when I make my own written numbers, the accuracy is usually less than 50%. I have tried playing around with the number of hidden layers, numbers of neurons, and number of epochs and I don't see any real change. What other likely places I could look to find a fix.
@HaxeHere
@HaxeHere Жыл бұрын
I have the same issue. The more I trained the data, the more inaccurate it actually got.
@BhanuPandey-hl9ql
@BhanuPandey-hl9ql Жыл бұрын
got the same issue here, have you fixed it any leads? @@HaxeHere
@Splendisimo
@Splendisimo Жыл бұрын
Try replacing all of the model.add lines with this 😉 model.add(tf.keras.layers.Conv2D(32, (3,3), activation='sigmoid', input_shape=(28, 28, 1))) # The one in "(28, 28, 1)" is required or else it'll error out model.add(tf.keras.layers.MaxPool2D((2, 2))) model.add(tf.keras.layers.Conv2D(48, (3,3), activation='sigmoid')) model.add(tf.keras.layers.MaxPool2D((2, 2))) model.add(tf.keras.layers.Dropout(0.5)) model.add(tf.keras.layers.Flatten()) model.add(tf.keras.layers.Dense(500, activation='sigmoid')) model.add(tf.keras.layers.Dense(10, activation='sigmoid'))
@BasedArmenian-kh8pb
@BasedArmenian-kh8pb 4 ай бұрын
@@Splendisimo for anyone wondering, the changes are essentially: - Using a convolutional neural network - Using a Sigmoid function instead of ReLU
@danielrocha2521
@danielrocha2521 10 ай бұрын
Why did we choose to use 128 neurons for our first Dense layer? I have always wondered what is the intuition that should be used for the number of neurons needed for a layer? Is it kinda just random
@BasedArmenian-kh8pb
@BasedArmenian-kh8pb 4 ай бұрын
its the standard
@LumiCrush3r
@LumiCrush3r Жыл бұрын
Why did you normalise the train and test data separately. Shouldn’t we first normalise train data and then apply the same normalisation factor to test data?
@purple_gemini
@purple_gemini Жыл бұрын
was thinking same, fit(Xtrain).transform(Xtrain) and fit(Xtrain).transform(Xtest)
@doktermaiskorn833
@doktermaiskorn833 3 жыл бұрын
great tutorial. how can i increase the accuracy. shoudl I just screw up the epochs. I tried this, but some digits like a angeled one or a 5 that get "recognized" as a 6 or a 3(as example). sorry for my bad english :D
@thesusgamer5539
@thesusgamer5539 Жыл бұрын
same man
@abebuenodemesquita8111
@abebuenodemesquita8111 3 жыл бұрын
mine is super innacurate. could you please help?
@abdallahlakkis449
@abdallahlakkis449 2 ай бұрын
‪How would you suggest to go from beginner to expert in ML/AI in practical terms. Assuming theoretical foundations are there‬
@marktellez3701
@marktellez3701 Жыл бұрын
lol, that intro music on a topic like this :D
@akshatdodhiya
@akshatdodhiya 3 жыл бұрын
Your videos are really amazing!
@GiorgioM.
@GiorgioM. 3 жыл бұрын
Hi F, very useful video as always! when you can, could you make a video about voice recognition/transcription in Python like youtube autosubtitle. To eliminate background noises ... what would you do? Thx
@anchorbuster3452
@anchorbuster3452 Жыл бұрын
really helped me a lot. Thank you so much😄😄
@williamikennanwosu
@williamikennanwosu 2 жыл бұрын
I'm at 14:04 and I'm getting the following error after loading the saved model 'logits and labels must have the same first dimension, got logits shape [32,10] and labels shape [25088]'. Is anyone getting the same error, I've researched it and it apparently has something to do with the loss function being sparse_categorical_crossentropy or categorical_crossentropy?
@williamikennanwosu
@williamikennanwosu 2 жыл бұрын
I found the problem and fixed it. I wrote 'test_y = tf.keras.utils.normalize(test_X, axis=1) ' instead of 'test_X = tf.keras.utils.normalize(test_X, axis=1) '
@alwinshoots
@alwinshoots 3 жыл бұрын
I'm very new to this and have a small doubt when training the data we normalized the pixel values to be between 0 and 1, but when we are predicting using jpgs we dont normalize it, why is that?
@danielrocha2521
@danielrocha2521 10 ай бұрын
I think the reason he normalized the pixel values to be between 0 and 1 is because as he said their values range between 0 and 255. Since this is a big range of numbers normalizing the pixel data would be most ideal as it would reduce the impact of spread on our model. However, when predicting the jpgs they only take on a value between 0 - 9 so label data cannot necessarily be as spread out as the pixel data can be, rendering it kinda useless to do so. Again this is just my thought process. If some of my logic is incorrect, please don't hesitate to correct me internet.
@anhurtjv
@anhurtjv 2 жыл бұрын
I did everything as done here, and the performance of the network is terrible, even after increasing the number of epochs!
@volleyball2676
@volleyball2676 7 ай бұрын
Same problem , have you managed to fix it?
@FirangizRasulova
@FirangizRasulova 5 ай бұрын
@@volleyball2676 same problem too, have u fixed it?
@larryhull2752
@larryhull2752 3 ай бұрын
I’m about to try it. Let you know soon 💪 fashion mnist worked for me
@rnuniverseplayz
@rnuniverseplayz 2 ай бұрын
For me the accuracy is pretty high but the loss is high too Accuracy = 0.9778 Loss = 0.7503
@oingomoingo7411
@oingomoingo7411 10 ай бұрын
am i the only one whos digits are not recognized ? The mnist data set works fine and gets recognized but my own digits no chance, why ist that ?
@jellocrackers9107
@jellocrackers9107 8 ай бұрын
Bro just dissed his own handwriting
@bthub3
@bthub3 4 ай бұрын
Go onto Paint and make the canvas 28x28 pixels, then colour everything black, then write on it with white brush/pen. It works for me.
@Ayumu31
@Ayumu31 6 ай бұрын
it seems my created model keeps giving wrong output so i increased epochs but same issue, i noticed it looks at a specific pattern and it finds it similar to another it checks to two numbers as the same number. For example, the 3 and 8 gets confused and it gets termed as 3 all the time. i wonder if it needs more training or do i need to change the code somewhere...
@masoon3373
@masoon3373 3 жыл бұрын
Great!👍 More videos like this ❤️
@srirammk5678
@srirammk5678 Жыл бұрын
I'm unable to evaluate the model, the error says they dont have same array size
@aravindputtapaka5147
@aravindputtapaka5147 Жыл бұрын
I want a python code to convert handwritten image into plain text with accurate i have tried but i didnt got you can try it and show me..
@Zane_Ritchie
@Zane_Ritchie Жыл бұрын
Hey, thank you so much for this video.
@godofstrangerness7096
@godofstrangerness7096 19 күн бұрын
Love the vid! But I have a slight problem, my 8 and 9 are not getting recognised even with more epochs.
@yadeen6828
@yadeen6828 Жыл бұрын
Hi sir , if we give the image in which we give any paragraph so they can detect it or not ,for example in image we give A ,so the they detect it or not
@yadeen6828
@yadeen6828 Жыл бұрын
if any one have idea about that so tell me
@johncheung4905
@johncheung4905 Жыл бұрын
I followed the video to the word, frame by frame. I got this "Mistake" before saving the model (before applying to self made numbers). The loss is 2.3, and the accuracy is 0.097. During the training though, all accuracies are over 90. Can anyone tell me what is the problem? Is there anything wrong with the test set? This is a great video. I just want to make it work !!
@kys8693
@kys8693 7 ай бұрын
Same Problem here
@kys8693
@kys8693 7 ай бұрын
import tensorflow as tf mnist = tf.keras.datasets.mnist (x_train, y_train), (x_test, y_test) = mnist.load_data() x_train = tf.keras.utils.normalize(x_train, axis=1) x_test = tf.keras.utils.normalize(x_test, axis=1) # model = tf.keras.models.Sequential([ # tf.keras.layers.Flatten(input_shape=(28, 28)), # tf.keras.layers.Dense(128, activation='relu'), # tf.keras.layers.Dense(128, activation='relu'), # tf.keras.layers.Dense(10, activation='softmax') # ]) # model.compile(optimizer='adam', loss='sparse_categorical_crossentropy', metrics=['accuracy']) # model.fit(x_train, y_train, epochs=10) # model.save('project.keras') model = tf.keras.models.load_model('project.keras') loss, accuracy = model.evaluate(x_test, y_test) print(f'Loss: {loss}') print(f'Accuracy: {accuracy}') That fixed my problem, you can try it out if you want to
@muthurubant5812
@muthurubant5812 3 жыл бұрын
You are awesome broo🔥🔥🔥🔥
@namo2943
@namo2943 3 жыл бұрын
Early, and love the video!
@onuraydn7065
@onuraydn7065 3 жыл бұрын
but what if I want to know different hxw images????? this only works for 28,28.
@candykoko90
@candykoko90 5 ай бұрын
why it's showing invalid file path use either. keras extension for saving. please add either a keras extension for the native keras format
@bthub3
@bthub3 4 ай бұрын
There's a comment by @somith4259 where they write the whole updated code. They did 'handwritten.models.keras' to fix the problem.
@BasedArmenian-kh8pb
@BasedArmenian-kh8pb 4 ай бұрын
Use ".keras" as the extension as it just told you
@eclipsehunter22
@eclipsehunter22 3 жыл бұрын
Awesome bro!
@hexyedev1336
@hexyedev1336 3 жыл бұрын
How could I train neural networks without a dataset? Like if I would like it to idk play a video game
@ranaabdulsammad2004
@ranaabdulsammad2004 Жыл бұрын
hey can anyone help please i am writing this code in jupyter notebook how to import images in jupyter will the process be the same???????
@ranaabdulsammad2004
@ranaabdulsammad2004 Жыл бұрын
please help
@ranaabdulsammad2004
@ranaabdulsammad2004 Жыл бұрын
asap
@HosseinOjvar
@HosseinOjvar Жыл бұрын
Helpful video , thank you ;)
@MichaZawadzki-ku1dk
@MichaZawadzki-ku1dk Жыл бұрын
Where did you download your training data and where was it loaded into your program? That is, I don't see any filename loaded...
@Nyo0
@Nyo0 Жыл бұрын
the training data is part of the tenserflow library itself u dont need to download it additionaly
@JacobRutgersson
@JacobRutgersson Жыл бұрын
How did you comment the whole section at 12:28?
@ea1766
@ea1766 Жыл бұрын
crtl + /
@AliAli-wi2ys
@AliAli-wi2ys 3 жыл бұрын
i did this 2 years ago with live opencv drawing and detection thx a lot
@FirangizRasulova
@FirangizRasulova 5 ай бұрын
The recognition sucked when i used my paint pictures. I found that it recognizes it way better when i have white on black images from paint.
@BasedArmenian-kh8pb
@BasedArmenian-kh8pb 4 ай бұрын
The MNIST dataset are literally all black on white pictures so this is why, that is the only thing its trained on
@FirangizRasulova
@FirangizRasulova 4 ай бұрын
@@BasedArmenian-kh8pb yes but we turned the black on white paint images to white on black. So I was expecting it to work. The owner of the channel used black on white too
@mohamedalisahnoun8021
@mohamedalisahnoun8021 Жыл бұрын
is there a chance i can run a code that can transform text pdf , images, voices into a model for medical stuff
@vantrixfn
@vantrixfn 2 жыл бұрын
AttributeError: module 'keras.api._v2.keras.models' has no attribute 'load'
@16thpolicy
@16thpolicy 2 жыл бұрын
this might be a stupid question but it isn't obvious for me in the code. How is the output layer ordered? what I mean is how does index 0 directly map to value '0', index 1 to '1', etc. I also searched this up for letter recognition and they have 0-25 mapping in order to letters sequentially. maybe someone can explain
@ihateclouds5783
@ihateclouds5783 Жыл бұрын
That is correct.
@tomstalley3179
@tomstalley3179 Ай бұрын
thank you!
@محمدامین-س3ف
@محمدامین-س3ف Жыл бұрын
thank you very much , bro .
@areebaazhar28
@areebaazhar28 Жыл бұрын
Sir imges not display when i run this code
@pranayjavvaji
@pranayjavvaji Жыл бұрын
how to downlode data set which u used ?
@giannhsp222
@giannhsp222 3 жыл бұрын
OMG.. I was in full screen mode and on 7:45 I thought someone hacked my computer! haha! It was scary!
@s.aravindh6227
@s.aravindh6227 3 жыл бұрын
Nice video bro 👍👍👍👍👍
@ushibuii8702
@ushibuii8702 3 жыл бұрын
can u tell the digits directory thing.. u just skipped that part]
@jonathandlt1214
@jonathandlt1214 2 жыл бұрын
Hi. Can someone help me to find my mistake. Where i can save the folder of image so that my programs will read directly to that folder. bcoz, it does not read the image number when i run the programs. really appreciate to someone help and enlighten me. tnx.
@captainamerica768
@captainamerica768 2 ай бұрын
what is the application u are using??
@poleq775
@poleq775 Ай бұрын
pycharm
@karthikeyan.s557
@karthikeyan.s557 3 жыл бұрын
Awesome bro
@alexdiaz4371
@alexdiaz4371 3 жыл бұрын
Awesome!!! Thanks
@AJain-18
@AJain-18 3 жыл бұрын
Nice video !!!
@Shayankhan-q8f
@Shayankhan-q8f 7 ай бұрын
Is it will work for handwritten words or text?
@brianfitzgerald6197
@brianfitzgerald6197 Жыл бұрын
Amazing!
@kgcolor
@kgcolor 3 жыл бұрын
Cool vid man, I want to get started, just curious as to what IDE you are using?
@zahraali8630
@zahraali8630 3 жыл бұрын
Looks like pycharm, not sure though
@furkanbasan
@furkanbasan 3 жыл бұрын
pycharm
@itztoreveuwu3869
@itztoreveuwu3869 11 ай бұрын
Amazing tutorial man, i'm a complete beginner and this is totally understandable and it's so awesome, i only have a question, what do i do if i want to use larger images, is it possible?
@malikmodric7161
@malikmodric7161 10 ай бұрын
i think you might need image segmentation , you'll find a video about it in this chanel
@MICOLO253
@MICOLO253 2 жыл бұрын
Hi, anyone knows which theme of PyCharm is this?
@ApoloEmanuel
@ApoloEmanuel 2 жыл бұрын
Dracula theme
@drip3889
@drip3889 6 ай бұрын
Why did we make the hidden layers 128 neurons? This is the part no one explains in tutorials
@BasedArmenian-kh8pb
@BasedArmenian-kh8pb 4 ай бұрын
No reason, it is default/standard and in various circumstances it could even cause minor problems changing it
@gagarinrout2034
@gagarinrout2034 Жыл бұрын
Why the dense layer with '128' units ?
@javali1678
@javali1678 Жыл бұрын
he just copied the value online, youtuber programmer modus operandi
@NarangaravB
@NarangaravB Жыл бұрын
You really helped me a lot. Thank you so much🤩
@tharukaridmal3117
@tharukaridmal3117 9 ай бұрын
Can you asist me to identify symbols from drawing using CNN. It will be much helpful for my project
@amanpiyushsharma
@amanpiyushsharma Жыл бұрын
can anyone help me the no module found name tensorflow
@rudrakshchamyal1275
@rudrakshchamyal1275 2 жыл бұрын
i am not able to load tensor flow
@yacahumax1431
@yacahumax1431 7 ай бұрын
In line #8 you are loading data, but you dont specify any files. I dont see were you are creating the actual training data and testing data. All I see is at the end , you creating data to actually use the model. where is the training data?
@christopherdessources
@christopherdessources 4 ай бұрын
The initial training data and testing data are supplied by mnist.
@morgoth4932
@morgoth4932 Жыл бұрын
can i do handwritten character recog using this,just by changing the dataset?
@lilfeccibraemusic
@lilfeccibraemusic Жыл бұрын
how do i change the dataset
@Dr.Fitsum_Teshome
@Dr.Fitsum_Teshome 2 жыл бұрын
Hi buddy, thank you for your useful videos. However, I am getting this error "NameError: name "keras" is not defined when I try to classify the datasets into training and test datasets. How can I solve this error, please?
@abhinavchoudhary6849
@abhinavchoudhary6849 3 жыл бұрын
Nice video
@isururasanjana-n2v
@isururasanjana-n2v Жыл бұрын
shouldn't we normalize the input image pixel values before predicting it
@robbyrthomas5623
@robbyrthomas5623 8 ай бұрын
I think the reason he normalized the pixel values to be between 0 and 1 is because as he said their values range between 0 and 255. Since this is a big range of numbers normalizing the pixel data would be most ideal as it would reduce the impact of spread on our model. However, when predicting the jpgs they only take on a value between 0 - 9 so label data cannot necessarily be as spread out as the pixel data can be, rendering it kinda useless to do so.
@ayshasimra8048
@ayshasimra8048 Жыл бұрын
I followed your code word by word still the result is showing error. Please help me!!
@BasedArmenian-kh8pb
@BasedArmenian-kh8pb 4 ай бұрын
What error
@manzilkarmacharya1478
@manzilkarmacharya1478 2 жыл бұрын
Can we use raspberry pie with touch screen for input
@theotrevalinet7560
@theotrevalinet7560 2 жыл бұрын
HI nice video ! Do you know how to analyse images that are bigger than 28x28px ?? Thanks ;)
@simplyylunar
@simplyylunar Жыл бұрын
im not fully sure about this but you can try changing the numbers in the "model.add(tf.keras.layers.Flatten(input_shape = (28,28)))" so change it to be like "model.add(tf.keras.layers.Flatten(input_shape = (32,32)))"
@keshavgupta8819
@keshavgupta8819 2 жыл бұрын
Thanku so much bro
@rajm5349
@rajm5349 2 жыл бұрын
kindly explain banking projects or fraud manageent or loan projects
@a.dennis003
@a.dennis003 11 ай бұрын
To enable the following instructions: SSE SSE2 SSE3 SSE4.1 SSE4.2 AVX AVX2 FMA, in other operations, rebuild TensorFlow with the appropriate compiler flags. this is the error i had
@robbyrthomas5623
@robbyrthomas5623 8 ай бұрын
This is not an error but a statement u can ignore, but if there is no output that probably mean program was not able to get the digits directory so check your path is correct or not, for me it was to include the directory name where the digits directory was stored
@AbhixSingh
@AbhixSingh 7 ай бұрын
Can you make this same video with alphabet instead of number ? Pretty pls
@aarushkumar168
@aarushkumar168 3 жыл бұрын
Please can you make a video on automating social media with python?
@javali1678
@javali1678 Жыл бұрын
he just uses others tools to make stuff that he doenst really understand. so dont expect much from him
@onuraydn7065
@onuraydn7065 3 жыл бұрын
is this only works 28,28 ????
@Martin-iy8gd
@Martin-iy8gd 2 жыл бұрын
Hi friend ! Nice video. Could you help me in making Handwritten Digits Recognition but using HMM?
@ushibuii8702
@ushibuii8702 3 жыл бұрын
cant download tensorflow
@stefanlodders9521
@stefanlodders9521 3 жыл бұрын
It is really helpful and all. Thank you. For me, there could be more illustration of what happens to our data after what command line. Often you just guess it, but you can not be sure, especially when you are not using standard python methods, as you just see the output. Like with neural networks itself. :)
@НикитаБаронов-с6н
@НикитаБаронов-с6н 2 жыл бұрын
why does the neural network immediately correctly determine the numbers without any training?
@pattyspanker8955
@pattyspanker8955 Жыл бұрын
@@НикитаБаронов-с6н It was trained for 3 epochs with a standard dataset
@akhilbisht798
@akhilbisht798 Жыл бұрын
Hey there is some problem in load_model() i cannot use predict or evaluate if i get my model from load_model() function
@a_lister242gaming7
@a_lister242gaming7 3 жыл бұрын
Anyone know what program he's coding this in?
@pandulathennakoon3826
@pandulathennakoon3826 3 жыл бұрын
Py charm
@a_lister242gaming7
@a_lister242gaming7 3 жыл бұрын
@@pandulathennakoon3826 Thank you!
@shaileshlprabhu1435
@shaileshlprabhu1435 7 ай бұрын
For me it's not printing anything why?
@wintersoldier4868
@wintersoldier4868 2 ай бұрын
Same ! Had you solved that?
@mahmoodjamshidian9525
@mahmoodjamshidian9525 3 жыл бұрын
vary practical
@Erik-fg9fk
@Erik-fg9fk Жыл бұрын
which ide is this?
@yuvamgupta4150
@yuvamgupta4150 5 ай бұрын
PyCharm by Jetbrains
@lunarfrosty3223
@lunarfrosty3223 6 ай бұрын
keras isn't working. anyone know how to fix
@rishyth
@rishyth 5 ай бұрын
use .h5
@the-notorious-khaki
@the-notorious-khaki 5 ай бұрын
@@rishyth explain?
@BasedArmenian-kh8pb
@BasedArmenian-kh8pb 4 ай бұрын
@@the-notorious-khaki accepted file extensions
@gitasaheru2386
@gitasaheru2386 2 жыл бұрын
Please make video Multi Layer Perceptron How To build With Manual Coding without tensorflow
@Newb1eProgrammer
@Newb1eProgrammer Жыл бұрын
predict function in line 31 isnt defined according to vscode, error message is " "predict" is not a know member of "None" ". help me
@mahdiabbasinourabadi8554
@mahdiabbasinourabadi8554 11 ай бұрын
thanks
@AJain-18
@AJain-18 3 жыл бұрын
First view, like and comment 😁😁
@unlimitediq1894
@unlimitediq1894 2 жыл бұрын
errors come up for every piece of code you write. I am unsure what wizardry you're doing to get it to work on your end. it always fails on mine and it pisses me off.
@javali1678
@javali1678 Жыл бұрын
he doesnt really understand neural networks too, just using tensorflow, there are far better videos on the subject, just look around , these "programmer" youtubers really are the bad side of the platform, they gain massive viewers and they are junior at best.
@Nohope__
@Nohope__ Жыл бұрын
my AI thinks 3 is a 6. :(
@recepbashir7216
@recepbashir7216 2 жыл бұрын
nice
@1112vinu
@1112vinu 11 ай бұрын
Can anyone share the source code ?
But what is a neural network? | Deep learning chapter 1
18:40
3Blue1Brown
Рет қаралды 18 МЛН
Deep Learning with Python, TensorFlow, and Keras tutorial
20:34
sentdex
Рет қаралды 1,3 МЛН
Much bigger simulation, AIs learn Phalanx
29:13
Pezzza's Work
Рет қаралды 2,8 МЛН
5 Python Libraries You Should Know in 2025!
22:30
Keith Galli
Рет қаралды 76 М.
How I make bots using python (educational)
17:12
Kian Brose
Рет қаралды 572 М.
Can You Beat Minecraft From One Grass Block?
35:27
Beppo
Рет қаралды 5 МЛН
Watching Neural Networks Learn
25:28
Emergent Garden
Рет қаралды 1,4 МЛН
Neural Networks Explained from Scratch using Python
17:38
Bot Academy
Рет қаралды 353 М.
Python laid waste to my C++!
17:18
Sheafification of G
Рет қаралды 181 М.
PyTorch Project: Handwritten Digit Recognition
33:00
NeuralNine
Рет қаралды 33 М.