abhisheks008 / DL-Simplified

Deep Learning Simplified is an Open-source repository, containing beginner to advance level deep learning projects for the contributors, who are willing to start their journey in Deep Learning. Devfolio URL, https://devfolio.co/projects/deep-learning-simplified-f013
https://quine.sh/repo/abhisheks008-DL-Simplified-499023976
MIT License
383 stars 318 forks source link

Fashion Sense Detector #875

Open Vaibhav-kesarwani opened 2 months ago

Vaibhav-kesarwani commented 2 months ago

Deep Learning Simplified Repository (Proposing new issue)

:red_circle: Project Title : Fashion Sense Detector
:red_circle: Aim : The of this project to develop a model which is capable enough to detect the cloths and try to find the best match using some algorithums
:red_circle: Dataset : A collection of 60,000 training images
:red_circle: Approach : Try to use 3-4 algorithms to implement the models and compare all the algorithms to find out the best fitted algorithm for the model by checking the accuracy scores. Also do not forget to do a exploratory data analysis before creating any model.


📍 Follow the Guidelines to Contribute in the Project :


:red_circle::yellow_circle: Points to Note :


:white_check_mark: To be Mentioned while taking the issue :


Happy Contributing 🚀

All the best. Enjoy your open source journey ahead. 😎

github-actions[bot] commented 2 months ago

Thank you for creating this issue! We'll look into it as soon as possible. Your contributions are highly appreciated! 😊

Vaibhav-kesarwani commented 2 months ago

@abhisheks008 please assign this to me

abhisheks008 commented 2 months ago

Hi @Vaibhav-kesarwani can you elaborate the problem statement and the approach you are planning for this problem statement?

5rujana commented 2 weeks ago

@abhisheks008

Proposed Approaches Convolutional Neural Networks (CNN) CNNs are particularly suited for image classification tasks, making them ideal for detecting and matching clothing. They excel at learning spatial hierarchies of features through their architecture, enabling the identification of patterns such as textures, shapes, and colors. I will experiment with established architectures like VGGNet or ResNet to create a robust baseline for the Fashion Sense Detector.

Transfer Learning with Pre-trained Models By leveraging powerful pre-trained models such as ResNet, InceptionV3, or MobileNet, I can enhance the model's performance while minimizing training time. These models, trained on large datasets like ImageNet, have already learned rich visual representations. Fine-tuning the final layers for the specific clothing dataset will yield superior accuracy, making this approach both efficient and effective.

Support Vector Machine (SVM) with HOG Features To complement deep learning approaches, I propose using Support Vector Machine (SVM) combined with Histogram of Oriented Gradients (HOG) features. This traditional machine learning model is particularly effective for smaller datasets and can classify clothing images based on their shapes and edges. The interpretability of SVM will also provide valuable insights into the decision boundaries for clothing categories.

Next Steps I plan to conduct exploratory data analysis (EDA) before model implementation to understand the dataset better and identify key features. The models will be compared based on their accuracy scores to determine the best fit for the Fashion Sense Detector.

abhisheks008 commented 2 weeks ago

Hi @5rujana thanks for sharing your approach. Can you please confirm the dataset which will be used here?