Skip to content

Implementations of matrix factorization or tensor factorization algorithms

License

Notifications You must be signed in to change notification settings

nukui-s/tffactorization

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages