I've been studying Machine Learning lately and now I'm working on Factorization Machines (Rendle's first papyer, 2010).
I've found later on https://github.com/srendle/libfm so I can apply that for specific train / test data.
The matrix (i.e training data) has to be in .txt format. What I've done so far working on a csv data file on Python in order to build the feature vectors X (intoduced here http://www.algo.uni-konstanz.de/members/rendle/pdf/Rendle2010FM.pdf) which gives me the matrix ... in Python.
Is it possible to extract it in .txt format or anything like that?