yash42828 / YOLO-object-detection-with-OpenCV

Object detection using YOLO object detector
105 stars 74 forks source link

This repository is over its data quota. Account responsible for LFS bandwidth should purchase more data packs to restore access. #1

Open efaguy27 opened 3 years ago

efaguy27 commented 3 years ago

When I try to clone the repo I get the following output

$ git clone https://github.com/yash42828/YOLO-object-detection-with-OpenCV.git
Cloning into 'YOLO-object-detection-with-OpenCV'...
remote: Enumerating objects: 73, done.
remote: Total 73 (delta 0), reused 0 (delta 0), pack-reused 73
Unpacking objects: 100% (73/73), done.
https://git-lfs.github.com/spec/v1 is not a valid attribute name: .gitattributes:1
sha256:ffdf270ab71acdc66cb339d7f97c96f5ad099ec8719dd10808099569afc05771 is not a valid attribute name: .gitattributes:2
Checking out files: 100% (24/24), done.

I am doing something wrong? I have tried cloning with git lfs and get the same result.

ananyasingh2104 commented 2 years ago

When I try to clone the repo I get the following output

$ git clone https://github.com/yash42828/YOLO-object-detection-with-OpenCV.git
Cloning into 'YOLO-object-detection-with-OpenCV'...
remote: Enumerating objects: 73, done.
remote: Total 73 (delta 0), reused 0 (delta 0), pack-reused 73
Unpacking objects: 100% (73/73), done.
https://git-lfs.github.com/spec/v1 is not a valid attribute name: .gitattributes:1
sha256:ffdf270ab71acdc66cb339d7f97c96f5ad099ec8719dd10808099569afc05771 is not a valid attribute name: .gitattributes:2
Checking out files: 100% (24/24), done.

I am doing something wrong? I have tried cloning with git lfs and get the same result.

Hey did you find a solution to the problem as I am facing the sam

efaguy27 commented 2 years ago

@ananyasingh2104 I found a workaround. The issue was the the 3 files in the yolo-coco dir are git-lfs files and the owner of the repo seems to have stop maintaining that, but luckily those files are available elsewhere. The following wget commands will download the three needed files just replace the ones in your local repo with these and you should be good to go.

wget https://pjreddie.com/media/files/yolov3.weights wget https://raw.githubusercontent.com/pjreddie/darknet/master/data/coco.names wget https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/yolov3.cfg

ananyasingh2104 commented 2 years ago

@ananyasingh2104 I found a workaround. The issue was the the 3 files in the yolo-coco dir are git-lfs files and the owner of the repo seems to have stop maintaining that, but luckily those files are available elsewhere. The following wget commands will download the three needed files just replace the ones in your local repo with these and you should be good to go.

wget https://pjreddie.com/media/files/yolov3.weights wget https://raw.githubusercontent.com/pjreddie/darknet/master/data/coco.names wget https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/yolov3.cfg

Thanks a lot. This solved the issue.