Tags: machine learning*

"Machine learning is a subset of artificial intelligence in the field of computer science that often uses statistical techniques to give computers the ability to "learn" (i.e., progressively improve performance on a specific task) with data, without being explicitly programmed.

https://en.wikipedia.org/wiki/Machine_learning

0 bookmark(s) - Sort by: Date / Title ↑ /

  1. 2017-11-03 Tags: by klotz
  2. 2018-07-27 Tags: , by klotz
  3. >>> from sklearn.neighbors import NearestCentroid
    >>> import numpy as np
    >>> X = np.array( [-1, -1 » , -2, -1 » , -3, -2 » , 1, 1 » , 2, 1 » , 3, 2 » ])
    >>> y = np.array( 1, 1, 1, 2, 2, 2 » )
    >>> clf = NearestCentroid()
    >>> clf.fit(X, y)
    NearestCentroid()
    >>> print(clf.predict( [-0.8, -1 » ]))
    1 »
    2021-09-02 Tags: , , , , by klotz

Top of the page

First / Previous / Next / Last / Page 1 of 0 SemanticScuttle - klotz.me: tagged with "machine learning"

About - Propulsed by SemanticScuttle