タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

numpyに関するkent013のブックマーク (3)

  • Nonnegative matrix factorization(NMF)でconsensus clustering

    NMFを追っかけてたらMetagenes and molecular pattern discovery using matrix factorizationという論文を見つけたので、週末はこの論文を読みながら色々やってみた。NMFの便利なところは元の特徴(この論文の場合は遺伝子発現量)からより少ない任意の特徴量(論文中ではmetagene)に変換できるところであり、さらにそのままクラスターの分割に利用できる。 たとえば2つのmetageneで表現した場合、より発現量の大きいmetageneで分割すれば2つのクラスに分けられる。(QSARだったらdescriptorからmeta discriptorが導かれてそれに基づいてクラス分類ができるでしょう) 続いて、重要なのがクラスの安定性である。要するに最適なクラスタの数はいくつなのかということである。これに対して、この論文ではConsensu

    Nonnegative matrix factorization(NMF)でconsensus clustering
  • Non-negative Matrix Factorization (NMF)

    Chih-Jen Lin Introduction The code can be directly run on GPU. See example below. (added on April 19, 2020) This tool solves NMF by alternative non-negative least squares using projected gradients. It converges faster than the popular multiplicative update approach. Details and comparisons are in the following paper: C.-J. Lin. Projected gradient methods for non-negative matrix factorization. Neur

  • scipy array tip sheet

    Arrays are the central datatype introduced in the SciPy package. (The same array objects are accessible within the NumPy package, which is a subset of SciPy. For consistency, we will simplify refer to to SciPy, although some of the online documentation makes reference to NumPy. And technically, array objects are of type ndarray, which stands for "n-dimensional array".) The array interface is acces

  • 1