Results 6 comments of Maosi Chen

I have a class `A` with its `__init__` to receive model parameters (e.g. numbers of LSTM and FC layers, number of n, dropout, etc.) and build the graph in it....

The issue was solved by wrapping the graph components with tf.make_template function. I set the "name" property of the instance of the model class to a unique string, so that...

1. Please clean/adjust the README structure. May consider adding numbering to the titles and subtitles and Explaining why do they exist and how are they connected to other items. 2....

Same problem as of February 11, 2019. It seems that we need to upload images to GEE from Google Cloud Storage (expensive!) in the future? https://gis.stackexchange.com/questions/303346/code-earthengine-uploading-multiple-images-ingestion-failed-time-out/303414#303414

Here is our revised `graph.laplacian` function ``` def laplacian_r1(W, normalized=True): """Return the Laplacian of the weigth matrix.""" # Degree matrix. #d = W.sum(axis=0) orig_d = W.sum(axis=0) fake_node_mask = np.where(orig_d 1):...

Hi Michaël, Yes, we found that setting `L` to one or zero on fake nodes does not change the model performance in my application because the corresponding values in `x`...