bedsDev / tffactorization

Implementations of matrix factorization or tensor factorization algorithms

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tffactorization

Implementations of matrix factorization or tensor factorization algorithms on TensorFlow

This contains here: Non-negative Matrix Factorization

#Basic Usage When applying NMF for V=WH,

import tensorflow as tf
from tfnmf import TFNMF

tfnmf = TFNMF(V, rank)
with tf.Session() as sess:
    W, H = tfnmf.run(sess)

About

Implementations of matrix factorization or tensor factorization algorithms

License:GNU General Public License v2.0


Languages

Language:Python 52.1%Language:Jupyter Notebook 47.9%