litingsjj
litingsjj
Sorry to bother you! I found this project calculate hessian trace, but not average hessian trace. How should I calculate average hessian trace? I will so appreciate if you have...
Hi, thanks for your work! I have a question about grafting. I run grafting.sh, the accuracy is 93.910. And the result is 93.430, when train without grafting. It seems normal....
sorry, I have a question about batchnorm layers. I didn't find norm layer in .py (demo_superpoint.py). like : ` # Shared Encoder. x = self.relu(self.conv1a(x)) x = self.relu(self.conv1b(x)) x =...
Hi, sorry to bother you. I have a question about /dataset/kitti.py. What's mean : `self.cat_ids = {1:0, 2:1, 3:2, 4:-3, 5:-3, 6:-2, 7:-99, 8:-99, 9:-1}` And in /sample/ddd.py: ` if...
Hi, I found loss_mask layer have two bottom, about your paper mask_score is 10 * 224 * 224, but the mask_targets, how can I sure 224*224? ` name: "loss_mask" type:...
I find several objects in image of your ITT datasets, you have several .sm files, like 0_1, 0_2, 0_3.sm. But in pascal voc I don't know how to create several...
Hi, thanks for your code! I have a question about .sm file. I read the `convert_instance_png_to_sm.py`. `The image '0.png' has 3 objects --> has 3 affordance masks: '0_1.png', '0_2.png', '0_3.png'.`....
Hi, thanks for your codes! But when I run `sh experiments/scripts/faster_rcnn_end2end.sh 1 VGG16 pascal_voc` I got a error : `Traceback (most recent call last): File "./tools/train_net.py", line 109, in imdb,...
这个可以实时分割吗?sensetimeAR中的分割也是采用这种技术??
Great work! thank you for your code. I have a question about seman_map. `seman_map[:,:,1] = 1` [https://github.com/liuwei16/CSP/blob/785bc4c5f956860116d8d51754fd76202afe4bcb/keras_csp/data_generators.py#L23](url) But in [https://github.com/liuwei16/CSP/blob/785bc4c5f956860116d8d51754fd76202afe4bcb/keras_csp/data_generators.py#L39](url) `seman_map[y1:y2, x1:x2,1] = 1` , is there have a bug?