Gokul Das

Results 9 comments of Gokul Das

@qnlbnsl > set XDG_CONFIG_HOME to a different directory, then run Sheldon source and finally reset XDG_CONFIG_HOME That hack has a few problems: 1. Ideally, all config should be in `XDG_CONFIG_HOME`....

@rossmacarthur I don't know if you're looking for an opinion - so here's my two cents. I like option 1 more than 2. It helps keep the configuration separate for...

I am getting the same error. Here is the error message: ``` Traceback (most recent call last): File "main.py", line 441, in run_yolo_training(options) File "main.py", line 434, in run_yolo_training ckpt_dir)...

I did some debugging and reached line 295 in src/datasets/transforms.py. https://github.com/westerndigitalcorporation/YOLOv3-in-PyTorch/blob/5944f2eae2b8e1e64c7c50cd42aa5e97e9d0e98c/src/datasets/transforms.py#L295-L297 This is where the `RSS` matrix is created in `_get_affine_matrix method`. If I understand correctly, the RSS matrix is...

Further debugging led to these 2 lines in transforms.py in method `RandonAffineWithLabel.__call__` https://github.com/westerndigitalcorporation/YOLOv3-in-PyTorch/blob/5944f2eae2b8e1e64c7c50cd42aa5e97e9d0e98c/src/datasets/transforms.py#L152-L153 `self.shear` is `(-10, 10)` in all cases and returns a 2 * 1 array of form `[n,...

Hi @wuhy08, Thanks for the information and suggestion! I will check it out. Your work is really great!

@eng100200 Not OP, but we did eventually get it to work with some imperfections. The function that threw the exception was meant to transform the training images and its labels...

@eng100200 I haven't looked at the annotation file. But have you checked a few sample images? The missing labels may be correct? That aside, I recommend moving to the [repo...

@eng100200 Sorry for the delay. Git LFS is available here: https://git-lfs.github.com/ . You will have to run `git lfs install` before you clone this repo.