No video

Tutorial 91 - Building your first deep learning model - Breast cancer diagnosis

  Рет қаралды 27,109

ZEISS arivis

ZEISS arivis

Күн бұрын

Notebook created in this video can be accessed at:
colab.research...
Problem statement:
Diagnose whether the patient has breast cancer using the features (attributes) provided.
What data is available?
Features (attributes) and corresponding labels (diagnosis) as a csv file.
archive.ics.uc...)
OR
www.kaggle.com...
Features are computed from a digitized image of a fine needle aspirate (FNA) of a breast mass
2 class problem: B-benign or M-malignant.
Strategy: Use deep learning to train a model using features as input and labeled diagnosis (B or M) as output on the training data. Then, evaluate the accuracy on the testing data.

Пікірлер: 54
@meenakshichippa260
@meenakshichippa260 Жыл бұрын
This is the best tutorial every I hv watched in machine learning and deep learning. The clarity u hv in ur thoughts, the way you explain thing I just love it.
@nayo7888
@nayo7888 2 жыл бұрын
Thank you for so patiently explaining all of these ideas. I am learning so much. 🙏🏽🙏🏽🙏🏽
@alialali9350
@alialali9350 2 жыл бұрын
great video ,you've made the topic of deep learning super easy, and I appreciate how you are taken your time explaining the little details. thank you.
@hailua9465
@hailua9465 3 жыл бұрын
I just started learning, thanks for sharing. I got a lot stuff from your training. keep a good job.
@ZEISS_arivis
@ZEISS_arivis 3 жыл бұрын
Great to hear!
@sumonadkeya8905
@sumonadkeya8905 10 ай бұрын
You are superb tutor, thank you 👌
@surflaweb
@surflaweb 3 жыл бұрын
Great class of deep learning. I learned a lot of stuff.
@ashanbandaranayeke9344
@ashanbandaranayeke9344 7 ай бұрын
Thanks! managed to follow and enjoyed it.
@hemantprajapati7066
@hemantprajapati7066 2 жыл бұрын
i would say only 1 thing that you are good teacher and thanks for sharing us
@ZEISS_arivis
@ZEISS_arivis 2 жыл бұрын
Thank you! 😃
@sarah.blossom
@sarah.blossom Жыл бұрын
Hi please any help! i have some issues with the graphs. in the loss function i have no graph in the accuracy one in find 2 lines one in the top and one in the bottom!
@tilkesh
@tilkesh 2 жыл бұрын
Thank you very much.
@shreyashkalushte4558
@shreyashkalushte4558 3 жыл бұрын
Great video
@ZEISS_arivis
@ZEISS_arivis 3 жыл бұрын
Glad you enjoyed it
@testing959
@testing959 2 жыл бұрын
Thanks for a great tutorial. Would it be useful to use convolutional layers as well on this dataset or is dense layers the best solution here?
@chandankalyan
@chandankalyan 9 ай бұрын
You use Convolutions when you have images to extract features, since you already have all the features extracted, and the data has no images you don't need convolutional layers
@zaydelbakkali547
@zaydelbakkali547 2 жыл бұрын
Can we implement the same projet as a final engineering studies project, or should we add others interesting things related to the subject ?!
@mainaksanyal6222
@mainaksanyal6222 2 жыл бұрын
It's very helpful Sir, if you please make a tutorial about breast cancer classification using CNN, it will be so helpful. Thank you.
@meenakshichippa260
@meenakshichippa260 Жыл бұрын
Same it will be great if you add some tutorial on breast cancer detection on mammography images
@sidikabdulmomade2350
@sidikabdulmomade2350 2 жыл бұрын
is like u have made some changes on the dataset when i download and use it is given me 1 error when iam start to train part UnimplementedError Traceback (most recent call last) in 1 #Fit with no early stopping or others callbacks ----> 2 model.fit(X_train, y_train, verbose=1, epochs=100, batch_size=64, validation_data=(X_test, y_test)) 1 frames /usr/local/lib/python3.7/dist-packages/tensorflow/python/eager/execute.py in quick_execute(op_name, num_outputs, inputs, attrs, ctx, name) 53 ctx.ensure_initialized() 54 tensors = pywrap_tfe.TFE_Py_Execute(ctx._handle, device_name, op_name, ---> 55 inputs, attrs, num_outputs) 56 except core._NotOkStatusException as e: 57 if name is not None: UnimplementedError: Graph execution error
@mistirmulla
@mistirmulla Жыл бұрын
There are NA columuns after reading the csv file. I fixed the problem by removing these columns using "df.drop(df.filter(regex="Unname"),axis=1, inplace=True)" line of code after the reading command. I hope this would help you.
@danieldaniel625
@danieldaniel625 11 ай бұрын
@@mistirmulla thanks a lot!
@fergusongodachaab6179
@fergusongodachaab6179 2 жыл бұрын
Sir, any link to the MRI breast cancer dataset, if you do kindly share thanks?
@SankarMandal.
@SankarMandal. 2 жыл бұрын
plz I want breast cancer image prediction using deep learning abstract
@surflaweb
@surflaweb 3 жыл бұрын
21:27 I couldn't rename the column 'Diagonosis' to Label using your code because my wisconsin_breast_cancer_dataset.csv dataset all the columns were in lower case I just change to 'diagnosis df = df.rename(columns={'Diagnosis':'Label'}) to df = df.rename(columns={'diagnosis':'Label'}) Another way to normalize our data is using the mean and the std: train_stats = df.describe() train_stats = train_stats.transpose() def norm(x): return (x - train_stats['mean']) / train_stats['std'] normed_train_data = norm(x_train) normed_test_data = norm(x_test) In this case we don't need the minmax features Thanks so much.
@rafikabenledghem9212
@rafikabenledghem9212 2 жыл бұрын
for all who will have the same probleme , You replace the code lines with this : df.rename(columns={'diagnosis': 'Label'}, inplace=True, errors='raise') print(df.dtypes)
@melatayehu395
@melatayehu395 2 жыл бұрын
thanks so much
@brahimferjani3147
@brahimferjani3147 6 ай бұрын
👍👍
@amith5504
@amith5504 3 жыл бұрын
please stick to the title of the playlist and explain deep learning in the context of image processing. There are many other resources for deep learning in structured data.
@ZEISS_arivis
@ZEISS_arivis 3 жыл бұрын
Structured data is part of experimental results, even for image processing. You never make a decision based on one image or one experiment. You collect enough data to understand the trends. Therefore, it is very important for researchers to learn these concepts.
@amith5504
@amith5504 3 жыл бұрын
In your previous videos you said that in deep learning, the feature learning is automated. But then to explain deep learning you are feeding the model features (extracted from images) what's the point ?
@ZEISS_arivis
@ZEISS_arivis 3 жыл бұрын
Sorry, I did not understand the question. In this example the data has been provided in a structured way where the features are pre-engineered (provided as attributes). If you can gain insights directly from the attributes then you do not need deep learning. The mapping from the attributes to output need to be learned via training. For structured data, especially if you only use dense networks you only train the fully connected neurons. For images, you can supply pre-engineered features that you generate by applying various filters. But that approach is not ideal as you do not know which filter works well for your specific case. Therefore, you use trainable convolutional filters to extract features and constantly learn as you train the model. This feature information is then fed into dense network for classification. In summary, features can be pre-engineered or learnt from training. In both cases you can use traditional ML (e.g., Random Forest) or Deep learning to classify.
@imanelaaraj375
@imanelaaraj375 6 ай бұрын
please from where you get the code source
@sonalilakra1355
@sonalilakra1355 7 ай бұрын
Does elm classification fit this code
@gutuabeya5378
@gutuabeya5378 2 жыл бұрын
Greate tutor!
@user-yi7qb7xs3x
@user-yi7qb7xs3x Жыл бұрын
Dear sir can we use the same code for multiclass classification
@renukanature7995
@renukanature7995 Жыл бұрын
Hello Sir, today i implemented this code. there is a problem reading my csv file.last column 32 is named as unnamed with nan parameters..How to remove this kinldy help me
@LuffyMonkey0327
@LuffyMonkey0327 Жыл бұрын
the breast cancer data i am using is a tar file. please do tutorial on that. am having trouble loading the data
@rudrarathi2186
@rudrarathi2186 Жыл бұрын
which algorithm is used in this project like RFE etc
@pranjalkalekar6367
@pranjalkalekar6367 3 жыл бұрын
Thanks for the tutorial sir! I am trying this tutorial right now but I am unable to download the data set from the link you have shared can you please help me sir?
@ZEISS_arivis
@ZEISS_arivis 3 жыл бұрын
I did a quick google search for the data set and I found it on kaggle. I recommend doing the same for any data set, you will usually find it online. Here is the direct link from Kaggle. www.kaggle.com/uciml/breast-cancer-wisconsin-data
@harshitshakya2035
@harshitshakya2035 3 жыл бұрын
Sir, How can we extract features from images dataset like Wisconsin dataset ? Please reply as early as possible 🙏🙏🙏
@harshitshakya2035
@harshitshakya2035 3 жыл бұрын
Because I want to create a project with own dataset.🙏
@ZEISS_arivis
@ZEISS_arivis 3 жыл бұрын
For images, you can apply many digital filters to extract features. For structured data you can combine various attributes and this field is called feature engineering. It requires domain knowledge as you cannot just randomly start combining various attributes. Usually, deep learning works fine with structured data using the attributes provided as it fits non-linear models.
@harshitshakya2035
@harshitshakya2035 3 жыл бұрын
@@ZEISS_arivis sir you have a breast cancer image dataset link not histopathology image? If you have so please share with me. 🙏🙏🙏🙏
@techbbas
@techbbas 2 жыл бұрын
Can you upload the code??
@kamranmammadli235
@kamranmammadli235 2 жыл бұрын
i try this but i cant. İ get 32 columns not 31.
@mistirmulla
@mistirmulla Жыл бұрын
There are NA columuns after reading the csv file.So we need to remove these what called Unnamed columns. I fixed the problem by removing these columns using "df.drop(df.filter(regex="Unname"),axis=1, inplace=True)" line of code after the reading command. I hope this would help you.
@kamranmammadli235
@kamranmammadli235 Жыл бұрын
@@mistirmulla hall ettim Mustafa bey tesekkur ederim.
@danieldaniel625
@danieldaniel625 11 ай бұрын
@@mistirmulla thanks a lot!
@ahmedhassan-yr4bt
@ahmedhassan-yr4bt 2 жыл бұрын
thank you really you are the best
Logistic Regression Project: Cancer Prediction with Python
44:21
Alejandro AO - Software & Ai
Рет қаралды 7 М.
This Dumbbell Is Impossible To Lift!
01:00
Stokes Twins
Рет қаралды 37 МЛН
The Giant sleep in the town 👹🛏️🏡
00:24
Construction Site
Рет қаралды 21 МЛН
娜美这是在浪费食物 #路飞#海贼王
00:20
路飞与唐舞桐
Рет қаралды 6 МЛН
나랑 아빠가 아이스크림 먹을 때
00:15
진영민yeongmin
Рет қаралды 5 МЛН
Machine Learning For Medical Image Analysis - How It Works
11:12
JAMA Network
Рет қаралды 81 М.
MIT Introduction to Deep Learning | 6.S191
1:09:58
Alexander Amini
Рет қаралды 506 М.
Breast Cancer Detection Using Python & Machine Learning
1:02:54
Computer Science
Рет қаралды 145 М.
Build a Deep CNN Image Classifier with ANY Images
1:25:05
Nicholas Renotte
Рет қаралды 595 М.
Breast Cancer Detection Using Machine Learning
6:51
Deep Code
Рет қаралды 16 М.
The U-Net (actually) explained in 10 minutes
10:31
rupert ai
Рет қаралды 98 М.
Breast Cancer Detection using Convolutional Neural Networks (CNN)
12:03
Trace Smart Technologies
Рет қаралды 5 М.
Brain Tumor Detection using Convolutional Neural Network
6:58
NC State ECE
Рет қаралды 76 М.
This Dumbbell Is Impossible To Lift!
01:00
Stokes Twins
Рет қаралды 37 МЛН