Inneke Mayachita

Results 7 issues of Inneke Mayachita

I have a training set consists of 704 graphs with a total number of nodes is ~ 770k and a test set consists of 352 graphs with a total number...

Hi, I would like to ask how can I train DirectedSAGE node classification with multiple graphs? The example of a similar setting is Protein-Protein Interaction Dataset. ![image](https://user-images.githubusercontent.com/3615586/109399246-4c684080-7974-11eb-824f-de0125fd95e6.png) (reference: [GAT](https://arxiv.org/pdf/1710.10903.pdf) paper)...

Hi all, Has anyone tried adding CRF layer on the last layer to improve performance? Thanks

Hi all, I tried to use CRF layer on top of Bi-LSTM-CNN NER model on this implementation https://github.com/kamalkraj/Named-Entity-Recognition-with-Bidirectional-LSTM-CNNs ``` wordEmbeddings = wordEmbeddings.reshape((wordEmbeddings.shape[0],300)) words_input = Input(shape=(None,),dtype='int32',name='words_input') words = Embedding(input_dim=wordEmbeddings.shape[0], output_dim=wordEmbeddings.shape[1], weights=[wordEmbeddings],...

I tried training the model several times and it gave me different results. I tried putting tf.set_random_seed and but still didn't work. Any idea? Thanks!

Hey, I saw that in the examples you saved the data not in TFRecords. I am working on a project where we save the dataset on TFRecords. We have a...

Hi everyone, I am wondering if it is possible that the node attributes matrix (X) is 3-D instead of 2-D? For example: we want to use word embedding as the...