MCPcopy Create free account
hub / github.com/alibaba/euler / fc

Method fc

tf_euler/python/utils/encoders.py:798–801  ·  view source on GitHub ↗
(self, hidden)

Source from the content-addressed store, hash-verified

796 return hidden
797
798 def fc(self, hidden):
799 fc = tf.concat(hidden, 1)
800 ld = layers.Dense(self.dims[-1], activation=tf.nn.relu, use_bias=True)
801 return ld(fc)
802
803 def fm(self, hidden):
804 o = len(hidden)

Callers 11

__call__Method · 0.80
callMethod · 0.80
__call__Method · 0.80
__call__Method · 0.80
apply_nodeMethod · 0.80
apply_nodeMethod · 0.80
__call__Method · 0.80
__call__Method · 0.80
__call__Method · 0.80
__call__Method · 0.80
__call__Method · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected