HaihuaLu
Results
2
issues of
HaihuaLu
def createFeature(input, layers): res = layers[0](input) tensor = res for layer in layers[1:]: if isinstance(layer, Add): tensor = layer([tensor, res]) res = tensor else: tensor = layer(tensor) return tensor Why...
@melfm Hi, thanks for sharing your code. I just finished the training and wonder how to do inference on KITTI test set? How to set the ground-plane belong to the...