First Release of Japanese Dependency Vectors

At the end of last semester I finished the first version of Japanese Dependency Vectors (jpdv). I had to give up on using Clojure at the last minute because it was taking me too long to make progress and I needed to have some sort of a working system to turn in for my NLP final project.

To accomplish this I rewrote jpdv in Java. It took me about 18 hours of solid coding, minus time for food of course.

The software can now generate both context-based and dependency-based vector spaces for Japanese text that has been pre-parsed with CaboCha. It can also generate a similarity matrix for a given vector space using the cosine similarity measurement. I still need to add a path selection function to throw out paths that are too long and a basis element selection function that determines which N basis elements to keep out of all those discovered, but I will add those to the next release. I'm thinking of writing the path selection and basis element selection functions as Groovy scripts so that they can be supplied at run time. This would allow for better customization of the system at run time for a given task.

More information can be found on the GitHub page.

Here is an example similarity matrix generated by the current version of jpdv:

WORDコンピュータ兄弟赤い電話青い黒い
コンピュータ1.000000.065060.075630.000000.077600.000000.00000
兄弟0.065061.000000.199290.000000.149470.000000.00000
0.075630.199290.999990.000000.198330.000000.00000
赤い0.000000.000000.000001.000000.000000.000000.01352
電話0.077600.149470.198330.000001.000000.000000.00000
青い0.000000.000000.000000.000000.000001.000000.00000
黒い0.000000.000000.000000.013520.000000.000001.00000
Avatar
Andrew C. Young
Software Engineering Manager