Last active
November 28, 2018 06:03
-
-
Save czotti/b1e34c23a92e64490be83f3b8908bdbe to your computer and use it in GitHub Desktop.
Tiramisu keras implementation
Other question: in the "Encoded filtering" part, it looks like a dense block. It seems like you could have used dense_block()
there. Am I missing something?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice work, thanks!
Question: At the end of
dense_block()
, don'tx_stack
andconnections
contain the same data? And intransition_up()
, you take the list of tensors coming fromconnections
and you concatenate them together. Couldn't you just usex_stack
?