DozenCoder

Results 11 comments of DozenCoder

Until May 15, I still cannot run `node sample1.js`.... Is there any solution for this bug?

I try to delete the folder manually, but this error still raise.

@anirband You should change your spark version, I also found that this program cannot work in spark2.4.0, it works well in spark2.3.0 and 2.3.2.

Maybe you should change other dependency and plugin version in pom.xml to make them work with spark new version, you can view my [pom.xml](https://github.com/superPershing/node2vec/blob/spark-2.3.2/node2vec_spark/pom.xml).

@q463746583 , you can try this: ``` 4.0.0 com.navercorp node2vec jar 0.1.2-SNAPSHOT node2vec_spark https://github.com/superPershing UTF-8 bin 3.2.1 1.6.0 1.8 2.11 org.scala-tools maven-scala-plugin 2.15.2 compile org.apache.maven.plugins maven-dependency-plugin 3.1.1 copy-dependencies package copy-dependencies...

@q463746583 It seems that error happens while parsing command parameters(in `Main.scala:93`). Maybe there are some wrongs in your command input.

Maybe because Deepwalk use Skip-gram and hierarchical softmax models:, Node2vec use Skip-gram and negative sampling models:.

@Sean0719 If you use python version, just with `--weighted`. Such as `python node2vec/src/main.py --input xx.edgelist --output xx.embeddings --dimensions 100 --walk-length 100 --num-walks 50 --window-size 30 --p 0.25 --q 4 --iter...

> Hi, > One more question, for the weighted node, the weight is used to compute the probability between two node? Thank you very much. By reading the source code:,...