Closed samuelstanton closed 4 years ago
Hi, I'm attempting to reimplement some parts of DARTS and I had a couple questions about the FactorizedReduce operator
1) is this line correct? Won't the slicing of x cause a shape mismatch in the concatentation? https://github.com/liamcli/darts/blob/master/cnn/operations.py#L102
x
2) Can you give some intuition for what this operator is supposed to do? In particular, why is it sometimes used as the skip_connect operator, instead of the Identity op?
skip_connect
Identity
hi samuel, please note this is a fork of the original repository at https://github.com/quark0/darts.
Hi, I'm attempting to reimplement some parts of DARTS and I had a couple questions about the FactorizedReduce operator
1) is this line correct? Won't the slicing of
x
cause a shape mismatch in the concatentation? https://github.com/liamcli/darts/blob/master/cnn/operations.py#L1022) Can you give some intuition for what this operator is supposed to do? In particular, why is it sometimes used as the
skip_connect
operator, instead of theIdentity
op?