Skip to content
#

ggnn

Here are 8 public repositories matching this topic...

dylanwinty
dylanwinty commented Aug 17, 2019

base_layers.py中:embedding 的call
def call(self, inputs):
shape = inputs.shape
inputs = tf.reshape(inputs,[-1])
output_shape = shape.concatenate(self.dim)
output_shape = [d if d is not None else -1 for d in output_shape.as_list()] #//tensorshape->[,,] list
return tf.reshape(tf.nn.embedding_lookup(self.embeddings, inputs),output_shape)

**GraphSage-ShallowEncoder e

Improve this page

Add a description, image, and links to the ggnn topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the ggnn topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.