Skip to content

Instantly share code, notes, and snippets.

@r7vme
Created July 6, 2019 00:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r7vme/4eaf168a18a918c17eee7ddc42629537 to your computer and use it in GitHub Desktop.
Save r7vme/4eaf168a18a918c17eee7ddc42629537 to your computer and use it in GitHub Desktop.
patch1.txt
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