SforAiDl / Playground

A python library consisting of pipelines for visual analysis of different sports using Computer Vision and Deep Learning.
MIT License
18 stars 17 forks source link

yolov3-tiny.cfg file missing #48

Closed someshsingh22 closed 4 years ago

someshsingh22 commented 4 years ago

The tiny yolo module has been implemented but the cfg file is not downloaded

obj = Detector(tiny=True)

/content/Playground/Badminton/utilities/parse_config.py in parse_model_config(path)
      1 def parse_model_config(path):
      2     """Parses the yolo-v3 layer configuration file and returns module definitions"""
----> 3     file = open(path, "r")
      4     lines = file.read().split("\n")
      5     lines = [x for x in lines if x and not x.startswith("#")]

FileNotFoundError: [Errno 2] No such file or directory: 'Badminton/config/yolov3-tiny.cfg'
jaygala commented 4 years ago

Actually, I have the yolov3-tiny.cfg on my forked repo - https://github.com/jaygala/Playground Please find it here. I am not sure if I can add this file in the main SforAiDl repo

someshsingh22 commented 4 years ago

@jaygala Then please add it to the repo, In case you are facing merge problems make sure you have added the main repo as an upstream, pull the upstream and make a PR