Created
July 6, 2019 00:14
-
-
Save r7vme/4eaf168a18a918c17eee7ddc42629537 to your computer and use it in GitHub Desktop.
patch1.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/net/bbox_3D_net.py b/net/bbox_3D_net.py | |
index 6daafdd..8146caa 100644 | |
--- a/net/bbox_3D_net.py | |
+++ b/net/bbox_3D_net.py | |
@@ -18,7 +18,7 @@ def bbox_3D_net(input_shape=(224, 224, 3), vgg_weights=None, freeze_vgg=False, b | |
for layer in vgg16_model.layers: | |
layer.trainable = False | |
- x = Flatten()(vgg16_model.output) | |
+ x = Reshape((25088,))(vgg16_model.output) | |
dimension = Dense(512)(x) | |
dimension = LeakyReLU(alpha=0.1)(dimension) | |
@@ -31,7 +31,7 @@ def bbox_3D_net(input_shape=(224, 224, 3), vgg_weights=None, freeze_vgg=False, b | |
orientation = Dropout(0.5)(orientation) | |
orientation = Dense(bin_num * 2)(orientation) | |
orientation = LeakyReLU(alpha=0.1)(orientation) | |
- orientation = Reshape((bin_num, -1))(orientation) | |
+ orientation = Reshape((bin_num, 2))(orientation) | |
orientation = Lambda(l2_normalize, name='orientation')(orientation) | |
confidence = Dense(256)(x) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment