WangYQ
WangYQ
getCnt我能理解是log10(n),但主函数的循环为什么也是log10(n)次呢?为什么和k无关?
From the equation (2) in the paper, the second order term should be a scalar. However, in the code, it is computed as a vector. I think the line 102...
Where are the trainable weights `W^{k}` as well as the activation in equation (2)? I can't find it in the code. Are these weights be missed?
In function `generate_neighbors`, there is a process to lookup encode node id from `vocab` for all nodes in the graph. The `vocab` is generated from all random walks. However, there...
应该是少个负号,或者把minimize改成maximize?参考graphSAGE论文中的公式(1)
I downloaded `neo4j-ml-models-1.0.1.jar ` file and copied it into the `plugin` directory of my neo4j-desktop project's database, when starting the database, I get the following error in my log: ```...
When padding the seq of description, the code use default value 0 to pad: ``` train_embed = keras.preprocessing.sequence.pad_sequences( train_embed, maxlen=max_seq_length, padding="post") test_embed = keras.preprocessing.sequence.pad_sequences( test_embed, maxlen=max_seq_length, padding="post") ``` But in...
在这里读到了文本检测任务的数据格式,有个疑问,如果图片为负样本,即没有任何文字,第二个字段应该是怎样的?https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.7/doc/doc_ch/dataset/ocr_datasets.md#1-%E6%96%87%E6%9C%AC%E6%A3%80%E6%B5%8B
In GraphOps.scala: ``` def setupAlias(neighbours: Array[(Long, Double)]): (Array[Int], Array[Double]) = { val K = neighbours.length val J = Array.fill(K)(0) val q = Array.fill(K)(0.0) val smaller = new ArrayBuffer[Int]() val larger...
Version: - CentOS Linux release 7.4.1708 (Core) - gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-39) ``` $ git clone --branch dgl https://github.com/KarypisLab/ParMETIS.git $ cd ParMETIS $ make config cc=mpicc prefix=~/local...