DL-Simplified icon indicating copy to clipboard operation
DL-Simplified copied to clipboard

Cricket Shots Detection using DL

Open ayan-joshi opened this issue 1 year ago • 7 comments

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 Model folder, the README.md file 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

ayan-joshi avatar Aug 03 '24 10:08 ayan-joshi

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

github-actions[bot] avatar Aug 03 '24 10:08 github-actions[bot]

@abhisheks008 Please have a look at it once

ayan-joshi avatar Aug 05 '24 15:08 ayan-joshi

It's better to start working on this issue @ayan-joshi. Assigning this issue to you.

abhisheks008 avatar Aug 06 '24 08:08 abhisheks008

@abhisheks008 I'm working on it , its okay if GSSOC is over I'll still complete it dont unassign

ayan-joshi avatar Aug 11 '24 19:08 ayan-joshi

Cool. @ayan-joshi

abhisheks008 avatar Aug 15 '24 04:08 abhisheks008

image

it happens everytime I try cloning , is it because of network connection or any other reason? @abhisheks008

ayan-joshi avatar Aug 22 '24 18:08 ayan-joshi

  1. 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

  1. 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>

  1. 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.

  2. Restart the clone: If the network or connection issue persists, you can try running the clone again from the beginning:

git clone <repository-url>

  1. 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!

abhisheks008 avatar Sep 14 '24 04:09 abhisheks008