Skip to content

Instantly share code, notes, and snippets.

@Collonville
Created December 17, 2020 11:53
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 Collonville/66d5e96052402cd6a59aedef00bcdd62 to your computer and use it in GitHub Desktop.
Save Collonville/66d5e96052402cd6a59aedef00bcdd62 to your computer and use it in GitHub Desktop.
from tensorflow import keras
# 本来はこう(学習時)
x = keras.layers.Concatenate()([image, table])
# サーバーではこうしていた(推論時)
x = keras.layers.Concatenate()([table, image])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment