Closed Sindhu-2004 closed 5 months ago
Congratulations, @Sindhu-2004! 🎉 Thank you for creating your issue. Your contribution is greatly appreciated and we look forward to working with you to resolve the issue. Keep up the great work!
We will promptly review your changes and offer feedback. Keep up the excellent work! Kindly remember to check our contributing guidelines
I would like to contribute to this issue.I have experience of working with Machine Learning and deep learning.I will use cnn,and other pretrained models for prediction.I am GSSOC 2024 participant.
@Sindhu-2004 proceed with dataset prep first;
I find your approach just copied from some AI stuff. If yes, don't repeat it again.
@SrijanShovit ,can you assign any issues to me?
Hi, looking forward to being assigned this issue for further contribution!
@saikrishna823 Your approach?
First I will construct general CNN architecture then I will use pretrained models like VGG,Resnet and will also explore other pertained models for better accuracy.
How can you make sure all your models are less than 5 MB? Any plans for that?
Can you please assign this to me.
This issue has been automatically closed because it has been inactive for more than 7 days. If you believe this is still relevant, feel free to reopen it or create a new one. Thank you!
Is your feature request related to a problem? Please describe.
A skin cancer detection model using TensorFlow to classify images as malignant or benign.
Describe the solution you'd like
Dataset : [Skin Cancer Dataset] https://www.kaggle.com/datasets/nodoubttome/skin-cancer9-classesisic
Approach : In this skin cancer detection project we implement a convolutional neural network (CNN) with the EfficientNetB7 architecture, leveraging transfer learning for improved performance. By loading a dataset of skin images labeled as malignant or benign, using Pandas and Numpy for data handling and Matplotlib for visualization. The dataset is split into training and validation sets, with images preprocessed by resizing and normalizing pixel values. EfficientNetB7, pre-trained on ImageNet, serves as the backbone for feature extraction, with its layers frozen to retain learned weights. The model is built using Keras Functional API, incorporating layers for flattening, dense connections with 256 units each, ReLU activation functions for non-linearity, Batch Normalization layers for training stabilization, and a Dropout layer with a 0.3 rate to prevent overfitting. The final layer is a single neuron with a sigmoid activation function, producing a probability score for malignancy. The model is compiled using the Adam optimizer and binary cross-entropy loss, with AUC as the evaluation metric. Training is conducted over multiple epochs, followed by performance evaluation through plots of training and validation loss and AUC metrics, demonstrating the model's effectiveness in distinguishing between malignant and benign skin lesions. This approach showcases the utility of transfer learning and advanced CNN architectures in medical image classification tasks.
Describe alternatives you've considered
No response
Additional context
No response
Code of Conduct