I can't find the code you quoted.
Which example is this.
There is this affinity propagation example:
http://scikit-learn.org/stable/auto_examples/cluster/plot_affinity_propagation.html#example-cluster-plot-affinity-propagation-py
which doesn't contain the lines.


On 04/28/2013 12:05 AM, ap wrote:

Using 0.13.1 example code I found the following difference in the Affinity call, and I am proposing a possible fix/change for that example program below.

WAS: (throws warnings)

af = AffinityPropagation().fit(S, p)

Traceback (most recent call last):

  File "E:\p\cr\rho\plot_affinity_propagation.py", line 41, in <module>

    af = AffinityPropagation().fit(S, p)

TypeError: fit() takes exactly 2 arguments (3 given

NOW: (SHOULD BE)

af = AffinityPropagation(affinity='precomputed',preference=p).fit(S)



------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_apr


_______________________________________________
Scikit-learn-general mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/scikit-learn-general

------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_apr
_______________________________________________
Scikit-learn-general mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/scikit-learn-general

Reply via email to