Kuangzy

Results 1 comments of Kuangzy

Update model and train again. ``` def create_model_normal(num_points): inputs = keras.Input(shape=(num_points, 3)) x = tnet(inputs, 3) x = conv_bn(x, 32) x = conv_bn(x, 32) x = tnet(x, 32) x =...