Тёмный

Breast Cancer Diagnosis with Neural Networks | Keras #4 

Hello World HD
Подписаться 6 тыс.
Просмотров 26 тыс.
50% 1

Опубликовано:

 

29 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 62   
@mwdcodeninja
@mwdcodeninja 5 лет назад
For a 13 year old you have made a better video that dives deeper in depth in a way which is completely digestible... and better than most professionals in this space! You've got a bright future ahead of you! I cant wait for your next video.
@hwhd
@hwhd 5 лет назад
Thank you! I am working on the next video.
@javiermarti_author
@javiermarti_author 5 лет назад
You are already one of the top 5 ML teachers on youTube due to the clear way in which you explain the concepts. Others know their stuff, but just show you what they know, or sometimes overcomplicate things or go too fast or skip steps. You TEACH better. The animations and your taking each step sequentially and highlighting things help A LOT for us, visual learners. When you´re doing the animations and it gets boring remember they are an essential way to teach faster, and we will thank you later and . You make perfect use of the tools at your disposal to teach. I also liked the absence or memes or music or the image of you talking or anything distracting. Keep it up! Congratulations. You´re a great example of how to use 21st century tools to teach. The more you care about teaching and the less you care about views, the more views you´ll have. Concentrate on continuing providing quality and going in the same path you´re going, whilst working on what you like, because your passion shows. I hope young people like you become teachers in the future because we really need them, particularly in the world of tech where there are so many people that know a lot about a subject but definitely cannot teach their way out of a paper bag and make many learners give up too early..
@hwhd
@hwhd 5 лет назад
I appreciate the kind words and advice. Thank you.
@MrEloska
@MrEloska 5 лет назад
Could you share rest 4 teachers, please?
@javiermarti_author
@javiermarti_author 5 лет назад
@@MrEloska Some of my favourites are Sentdex, Data School, Krish Naik, Victor Lavrenko...but if you have some you would recommend please let me know as it's quite hard to find good/clear teachers on these topics
@nibo1980y
@nibo1980y 5 лет назад
you made this and you're 13? damn, that's awesome. kudos!
@hwhd
@hwhd 5 лет назад
Thanks!
@zaheerbeg4810
@zaheerbeg4810 3 года назад
You are a Great Teacher , Thanks for Uploading Keep it Up...You are not 13 you are 130...
@ragulshan6490
@ragulshan6490 4 года назад
Really impressive work!!! You explained everything so easy!! I didn't know we can use softmax for binary problems. Thnks for the idea!!!
@hwhd
@hwhd 4 года назад
You are welcome!
@elenabichuch8059
@elenabichuch8059 5 лет назад
Awesome video! What a clear and crisp presentation! I wish you success and new great achievements!
@julianhautzmayer2232
@julianhautzmayer2232 5 лет назад
Oh man you are awesome! Good explanation, nice voice and a lot of important information! Great work!
@felipegonzalez892
@felipegonzalez892 4 года назад
Bro you´re channel is a gem, thanks for all, i'm waiting for a new video soon :(
@hwhd
@hwhd 4 года назад
Thanks! I’m working on the next video.
@jamjam3448
@jamjam3448 5 лет назад
I must subscribe! I just started programming in python. Hope to reach far.
@ilandd5559
@ilandd5559 4 года назад
Hi, thank you for your great video! However, I do not understand what is the input data set. I would like to know that from which folder in the database link (CI Machine Learning Repository ) did you obtain your X_data and Y_data?
@RobertoMartin1
@RobertoMartin1 5 лет назад
Sweet! This was really great dude. Thanks!
@nlcaspernl
@nlcaspernl 5 лет назад
Dude, this video is better than most paid courses!
@hwhd
@hwhd 5 лет назад
Thank you!
@MrEloska
@MrEloska 5 лет назад
Very very good explanation!!
@hwhd
@hwhd 5 лет назад
Thank you!
@functionform
@functionform 4 года назад
Instant sub, these are great videos you're putting out, thank you!
@hwhd
@hwhd 4 года назад
Thank you!
@Ankurkumar14680
@Ankurkumar14680 3 года назад
Kudos to u little one, wish u very bright future :)
@mrlolzot
@mrlolzot 4 года назад
Wow, this is amazingly well explained. Thx dude.
@hwhd
@hwhd 4 года назад
You are very welcome!
@shreenivaschityala3699
@shreenivaschityala3699 4 года назад
Is there any way to add another parameters like age, menopause, history of family to cancer, lifestyle habits to predict the disease?
@syrpailyne
@syrpailyne 2 года назад
So well explained :)
@wisdomjamesmurombo1292
@wisdomjamesmurombo1292 4 года назад
Thanks for the video, would appreciate some help on how to extract features from new images using python for use in real world application on taking user input and classifying the input into malignant or benign. Or any idea to make this applicable in real world using new cell images.
@tahayassineayari9548
@tahayassineayari9548 5 лет назад
You are amazing! thank you very much, it is very helpful!
@hwhd
@hwhd 5 лет назад
Thank you! You are very welcome.
@t.t.cooperphd5389
@t.t.cooperphd5389 5 лет назад
Do you have a patreon. I would like your advice on a ML project I am doing.
@inesaoues5464
@inesaoues5464 3 года назад
hii please how can we do classification with ct scan images detecting covid 19 or pneumonia
@atruismoti2402
@atruismoti2402 2 года назад
Are you a genius? OMG!
@ernestbonatph.d.9739
@ernestbonatph.d.9739 5 лет назад
Why is very important in Binary Classification ML projects to split the data using train_test_split() method from scikit-learn with hyperparameter stratify=True? Explain?
@hwhd
@hwhd 5 лет назад
Stratify ensures that training and testing data have representative chunks of each class. For example, if in your dataset, class 1 represents 30% of the data points and class 2 represents 70% of the data points, stratify will ensure that both the training and testing data have these same proportions of class 1 and class 2 (30% and 70% respectively). In general, this isn't a bad practice, especially when your dataset has a lot more of one class than another. In my case, both classes are of similar size. In my code, I randomly shuffle the data before sampling it. With large enough training and testing data, this will almost certainly give you an accurate representation of both classes.
@ernestbonatph.d.9739
@ernestbonatph.d.9739 5 лет назад
I believe in Classification ML projects the evaluation metrics in order are: Classification Accuracy Score, Confusion Matrix, Classification Report, Area under ROC Curve and Logarithmic Loss. Is this correct?
@hwhd
@hwhd 5 лет назад
I am not sure what you mean by 'in order', but yes, all these are evaluation metrics for classification problems.
@montacarty50
@montacarty50 5 лет назад
thank you.
@hwhd
@hwhd 5 лет назад
You are very welcome.
@salah2446
@salah2446 5 лет назад
In this project, each sample had a single number assigned to each attribute, but how about if it was a vector { set of data }? I’m doing a project on fault diagnosis in a small juice plant I built. And each of the faults and the normal behavior have a one minute run in which data are generated ( around 600 data point per run ). Now how do I input this to the neural network ?
@jamjam3448
@jamjam3448 5 лет назад
This is cool
@tejaswinid1022
@tejaswinid1022 4 года назад
Could u plz make a video on lung cancer detection on image dataset? plz
@SabbirAhmedSibli
@SabbirAhmedSibli 3 года назад
At the age of 24, I'm watching this tutorial to have some knowledge about ML whereas I still try to figure out how to go out the light of the fridge after closing the door.
@ernestbonat2440
@ernestbonat2440 5 лет назад
where can i download the jupyter notebook file? no time for typing...
@hwhd
@hwhd 5 лет назад
GitHub. It's the second link in the description.
@ChromesClips
@ChromesClips 5 лет назад
Very impressive that you've learned so much at such a young age. Would you mind telling me your roadmap for how you got to this point (particularly machine learning)? Like where did you start, what resources did you find useful, what order, etc.? I am currently going through Andrew Ng's course and learning the basic ML algorithms but I've never used Keras, TensorFlow, or anything advanced really and would really appreciate seeing how you got to where you are. Also, great video! Thanks!
@hwhd
@hwhd 5 лет назад
Like you, I began by learning machine learning (specifically deep learning) concepts. Andrew Ng is a great resource for this. Though I did have some experience with Python (there are many free courses on RU-vid), and this is very helpful when learning ML. I then took a Udemy course on Keras. This was the exact course www.udemy.com/zero-to-deep-learning/ but there are many like it. This video series largely aims to 'get your feet wet', but it is also a great resource (I am not biased at all :))
@willmhowes
@willmhowes 5 лет назад
Nice video. Is it just one person handling this channel, or do you have other people helping with content / video scripts / video editing?
@hwhd
@hwhd 5 лет назад
Thanks! Believe it or not, I made this video all by myself. I began planning the video about three months ago, although I wasn't able to work on it as much as I would have liked because of the demands of school and extracurriculars. Fortunately, I had spare time over spring break, during which I worked on the video a whole lot. It took me a while to learn to effectively use Adobe Premiere Pro, Illustrator, After Effects, and Photoshop (see my older videos to see the evolution of my video style).
@willmhowes
@willmhowes 5 лет назад
@@hwhd In that case, keep up the great work!
@ethandesai612
@ethandesai612 5 лет назад
Jacob sent me
@ameldagdoug5292
@ameldagdoug5292 5 лет назад
Nice video, but please can you help me ,it's very urgent ,also i prepare my file.after load and save with Pickle but i dont know how can use and display this file in website to detect diseases????
@hwhd
@hwhd 5 лет назад
Sorry, I'm not sure what you mean.
@ernestbonat2440
@ernestbonat2440 5 лет назад
The compiled model and scale pickle files need to be deployed in a web server with Python required libraries installed. Then a RESTful API Web Service will be used to consume these file by any needed application. Feel free to read the following blog: “Using C# to call Python RESTful API Web Services with Machine Learning Models” (medium.com/@ernest.bonat/using-c-to-call-python-restful-api-web-services-with-machine-learning-models-6d1af4b7787e). You asked very important question - Thank you!
@pritammodak8770
@pritammodak8770 5 лет назад
hellow sir... can i got any paper releted to this codee plzzz hlp
@tejaswinid1022
@tejaswinid1022 4 года назад
U may find paper in ieee explorer of 2019 year but i dont know which model they have used
@abdullahjanabi1094
@abdullahjanabi1094 5 лет назад
Haha tiny brain this is why u Russia. Jk good vod
Далее
Neural Network Regression Model with Keras | Keras #3
19:05
Когда Долго В Рейсе)))
00:16
Просмотров 95 тыс.
Has Generative AI Already Peaked? - Computerphile
12:48
MIT Introduction to Deep Learning | 6.S191
1:09:58
Просмотров 676 тыс.
Breast Cancer Prediction Using Machine Learning
26:02