1

I'm doing a Natural Language Processing project where I compute a bunch of attributes of a text, giving me a vector of values for each text. I want to compare these vectors with multidimensional scaling. What Java libraries/toolkits do you recommend for doing this?

Gilles 'SO- stop being evil'
  • 104,111
  • 38
  • 209
  • 254
Nick Heiner
  • 119,074
  • 188
  • 476
  • 699

2 Answers2

1

I used the following MDSJ to reduce a matrix from k dimensions to n dimensions. Where k was 4000 and n was 3 in my case. The app runs both as a standalone application and as a jar lib that can be included in your application.

http://www.inf.uni-konstanz.de/algo/software/mdsj/

DavidRFoote
  • 216
  • 2
  • 5
0

Try the following post, it may provide what you are looking for.

Java Scientific Packages similar to SciPy?

Community
  • 1
  • 1
Bear
  • 1,117
  • 7
  • 11