I have a user-event data with user ratings for events user has attended.I am trying to use Jama library for similarity matrix which needs two dimensional array as input (users-event matrix with event ratings)
the data i have as three columns : userID, eventID, rating
But the number of users is around two million and events count to around 1 million. So what should be the efficient method to make use of jama library for computing similarity matrix.As the numbers are huge and doesnt fit in the memory in my system. I am using JAVA for the problem.
Thanks Aman