Hongwei Niu

Results 17 comments of Hongwei Niu

> This is a classic (accidental) typographic attack. > > ![iPod Apple attack](https://camo.githubusercontent.com/7ffc801ca068e382df865b228208fdb5dc68979968a09b7fdb481b83e57087d2/68747470733a2f2f647565742d63646e2e766f782d63646e2e636f6d2f7468756d626f722f3078303a31313936783831322f31323030783830302f66696c746572733a666f63616c28353938783435393a35393978343630293a666f726d61742877656270292f63646e2e766f782d63646e2e636f6d2f75706c6f6164732f63686f7275735f61737365742f66696c652f32323335333435382f6170706c655f69706f645f746573742e6a7067) > > See the _Fallacies of abstraction_ section of [OpenAI - Multimodal neurons in artificial neural networks](https://openai.com/research/multimodal-neurons)....

> You can use `predict_torch` to give multiple bounding boxes as input prompts: > > ```python > input_boxes = torch.tensor([box_1, box_2], device=mask_predictor.device) > transformed_boxes = mask_predictor.transform.apply_boxes_torch(input_boxes, image.shape[:2]) > masks, iou_predictions,...

> So this is my Solution: > > ``` > input_points = [] > > input_boxes = [] > input_label = [] > > for groupedPoints in groupedPointsByBoxes.items(): > pointsByBoxForSegmentation...

> y是为了减少节点个数,从而减少计算邻接矩阵时的计算量。 谢谢回答!

> As far as I understand: > > * Pair: number of samples (videos) > * L: length of video in frames > * T: time axis? It's always 1...

I have the same question.

> It uses the Gumble-softmax to make propagation come true. May I ask on which line of the code is it

> In short: They are used in the indicator matrix of `sigmoid_weighted_focal_loss()` in `models/segmentation.py` to not penalize predictions without a pseudo label from the filter. > > See in engine.py...