DynamicGEM icon indicating copy to clipboard operation
DynamicGEM copied to clipboard

Results 16 DynamicGEM issues
Sort by recently updated
recently updated
newest added

Hello, I've seen #23 .But i have some questions.I don't see dynamic graph embedding(graph_series,learn_embeddings) in dynSDNE. So does dynSDNE implement DynGEM? Thanks:)

Hi, auther. I notice that you refer to 'DynGEM’ model in your library, but I can't find your implement about it. In 'ae_static.py', you just support the base of general...

First it is a remarkable paper and lib for me, but I meet some trouble when testing the code. Here is the code pasted from the README.md ```datafile = dataprep_util.prep_input_dynTriad(graphs,...

I found the output embeddings is a numpy array. Could you tell me how to get the node id corresponding to the output embeddings? Especially when I use my own...

In the [dyAE.py](https://github.com/palash1992/DynamicGEM/blob/master/dynamicgem/embedding/dynAE.py) file, the code in line 113 should be x_diff = Subtract()([x_hat, x_pred]) rather than x_diff = Subtract()([x_hat, x_in]) Also, in dyAE program, **batch_generator_dynae** function didn't use **lookback**...

I have install the dependencies, and when I run example/example.py, an error occurs as follows: ``` /Users/corwin/Desktop/project/DynamicGEM/dynamicgem/utils/plot_util.py:6: UserWarning: matplotlib.pyplot as already been imported, this call will have no effect. matplotlib.use('Agg')...

I want to know the step of using Exp.py. when I run the Exp.py , i got an error. Traceback (most recent call last): File "dynamicgem/experiments/exp.py", line 358, in call_exps(params,...

Hi, I see the code of the "dynAE" model, and I find that you just use **A_(t) to predict A_(t+1)**, not **using {A_(t),..., A_(t+l)} to predict A_(t+l+1)**, isn't it?

Hi: thanks for the great package! I'm trying to learn an embedding on the dblp dataset. I'm able to train for 7 "rounds" of 5 epochs each. However, during the...