BiSeNet icon indicating copy to clipboard operation
BiSeNet copied to clipboard

Add bisenetv2. My implementation of BiSeNet

Results 61 BiSeNet issues
Sort by recently updated
recently updated
newest added

any suggestions for optimization? 1. Speed up the reasoning 2. improve the accuracy of segmentation details thx!

Have you ever used TRT on Windows

I made the following changes: ![image](https://user-images.githubusercontent.com/71338215/147355538-b4595949-acc5-4ca2-8384-71d8b19c35a8.png) the errror: ![image](https://user-images.githubusercontent.com/71338215/147355583-e22861fa-106c-4ae5-976e-99c6e1e10dc0.png) ![image](https://user-images.githubusercontent.com/71338215/147355638-e90495fd-0b3a-4653-a6ec-5bea9d139f69.png) ![image](https://user-images.githubusercontent.com/71338215/147355601-e1bdc937-1d04-4aec-aa61-883eebb5cb5f.png) I hope someone can help me take a look, how should I modify。Thanks!!!!!!!!!

the code pad image through: im = np.pad(im, ((pad_h, pad_h), (pad_w, pad_w), (0, 0))) lb = np.pad(lb, ((pad_h, pad_h), (pad_w, pad_w)), 'constant', constant_values=255) my doubt is, why we not set...

@CoinCheung Why does the loss function ignore the tag of 255. I look at the data. The label of 255 may be various objects, and each image is almost different....

in bisenetv1.py class ContextPath lack F.interpolate about avg in line 141, so the result is wrong

Hello, I am the author of this paper BiSeNet. First, thanks for your awesome practice. The tricks mentioned in the README file are our common tricks in the implementation of...