Mehran Ghandehari

Results 17 comments of Mehran Ghandehari

This issue happened for me and the reason was setting logit=False in the loss function by mistake.

--save-hybrid leads to MAP of 1 that is a bug!

I have had the same issue and did figure out that there is an issue with my data that leads to this erorr. Have not found out what is the...

I learned that this issue occurs because there are some bounding boxes that slightly go outside of the image border. This might the main reason of WorkNCCL error.

@glenn-jocher Thanks for your response. Yesterday I noted that the bounding box issue can lead to the error. So I did fix it, but faced the WorkNCCL error again when...

@AyushExel @Laughing-q @glenn-jocher It seems that the responses generated by @glenn-jocher is computer generated like using ChatGPT as it does not make any sense!

@AlbertoOddness @glenn-jocher I had the same issue and spent a lot of time explored many potential solutions including checking and fixing data issue, upgrading the pytorch and cuda to the...

it seems that stack api has changed...this works for me. stac-to-dc \ --catalog-href='https://earth-search.aws.element84.com/v1/' \ --bbox='25,20,35,30' \ --collections='sentinel-2-l2a' \ --datetime='2020-01-01/2020-03-31'

For me it resolved by adding the verification_mode param: ``` imdb_ds = load_dataset( "imdb", verification_mode="no_checks" ) imdb_ds ```

@Robotatron I could run the val.py by making the following change xywh = (xyxy2xywh(torch.tensor(xyxy).view(1, 4)) / gn).view(-1).tolist() -> xywh = torch.tensor(xyxy).view(-1).numpy() This just allows the code to run but is...