I want to cluster ~100,000 short strings by something like q-gram distance or simple "bag distance" or maybe Levenshtein distance in Python. I was planning to fill out a distance matrix (100,000 choose 2 comparisons) and then do hierarchical clustering with pyCluster. But I'm running into some memory problems before even getting off the ground. For example, the distance matrix is too large for numpy.
aa = numpy.zeros((100000, 100000))
ValueError: array is too big.
Does this seem like a reasonable thing to do? Or am I doomed to memory problems in this task? Thanks for your help.