Re: Python library for clustering from distance vector

2008-06-14 Thread Sengly
On May 19, 2:42 am, jay graves <[EMAIL PROTECTED]> wrote: > On May 17, 11:49 pm, Sengly <[EMAIL PROTECTED]> wrote: > > > I am looking for a python library which can cluster similar objects > > into their respective groups given their similarity score of each two > > of them. I have searched the gro

Re: Python library for clustering from distance vector

2008-05-18 Thread jay graves
On May 17, 11:49 pm, Sengly <[EMAIL PROTECTED]> wrote: > I am looking for a python library which can cluster similar objects > into their respective groups given their similarity score of each two > of them. I have searched the group but I couldn't find any helpful > information yet. How about goo

Re: Python library for clustering from distance vector

2008-05-18 Thread Matthieu Brucher
Hi, You should send your question on the scipy user ML. If you use a distance between objects, you can try the kmeans (implemented in scipy), if you use similarities, you can change them to dissimilarities and use the same function. Matthieu 2008/5/18 Sengly <[EMAIL PROTECTED]>: > Dear all, > >