nickgreenquist / cu2rec

CUDA Implementation of Parallel Matrix Factorization Algorithm for Recommender Systems
GNU Affero General Public License v3.0
13 stars 1 forks source link

Turn config into JSON #21

Open dorukkilitcioglu opened 5 years ago

dorukkilitcioglu commented 5 years ago

Right now, the config struct is very rigid in terms of the number of necessary variables (all of them) and their order (must be correct every time). Instead, we could try to read a JSON file.

The aptly named json library looks great, but it doesn't work with CUDA. There are two others which I haven't tried yet, so hopefully they work.