DL-Simplified
DL-Simplified copied to clipboard
Cricket Shots Detection using DL
Deep Learning Simplified Repository (Proposing new issue)
:red_circle: Project Title : Cricket Shots Detection :red_circle: Aim : he project focuses on classification of different cricket shots using various Deep Learning Algorithms. :red_circle: Dataset : https://www.kaggle.com/datasets/aneesh10/cricket-shot-dataset :red_circle: Approach : Deep Learning Algorithms used will be: ResNet, DenseNet , InceptionNet
📍 Follow the Guidelines to Contribute in the Project :
- You need to create a separate folder named as the Project Title.
- Inside that folder, there will be four main components.
- Images - To store the required images.
- Dataset - To store the dataset or, information/source about the dataset.
- Model - To store the machine learning model you've created using the dataset.
requirements.txt- This file will contain the required packages/libraries to run the project in other machines.
- Inside the
Modelfolder, theREADME.mdfile must be filled up properly, with proper visualizations and conclusions.
:red_circle::yellow_circle: Points to Note :
- The issues will be assigned on a first come first serve basis, 1 Issue == 1 PR.
- "Issue Title" and "PR Title should be the same. Include issue number along with it.
- Follow Contributing Guidelines & Code of Conduct before start Contributing.
Happy Contributing 🚀
All the best. Enjoy your open source journey ahead. 😎
@abhisheks008 I hope this will be a great addition to DL-Simplified
Thank you for creating this issue! We'll look into it as soon as possible. Your contributions are highly appreciated! 😊
@abhisheks008 Please have a look at it once
It's better to start working on this issue @ayan-joshi. Assigning this issue to you.
@abhisheks008 I'm working on it , its okay if GSSOC is over I'll still complete it dont unassign
Cool. @ayan-joshi
it happens everytime I try cloning , is it because of network connection or any other reason? @abhisheks008
- Increase Git buffer size: It may be that the repository is too large for the default Git buffer size. You can increase it by running the following command in your terminal:
git config --global http.postBuffer 157286400
- Use --depth to limit the clone size: You can try a shallow clone, which only pulls the latest commit history, reducing the size of the clone:
git clone --depth 1 <repository-url>
-
Check your internet connection: This error can also occur due to a weak or unstable internet connection. Ensure your connection is stable before retrying the clone.
-
Restart the clone: If the network or connection issue persists, you can try running the clone again from the beginning:
git clone <repository-url>
- Use SSH instead of HTTPS: If you are cloning using HTTPS, try switching to SSH, as it can sometimes help with larger repositories:
git clone [email protected]:<username>/<repository>.git
Try out these solutions, hopefully you'll get rid of this issue!