├── .gitignore ├── LICENSE ├── README.md ├── dataio.py ├── doc └── graph_svd.png ├── download_data.sh ├── ops.py └── svd_train_val.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songgc/TF-recomm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songgc/TF-recomm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songgc/TF-recomm/HEAD/README.md -------------------------------------------------------------------------------- /dataio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songgc/TF-recomm/HEAD/dataio.py -------------------------------------------------------------------------------- /doc/graph_svd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songgc/TF-recomm/HEAD/doc/graph_svd.png -------------------------------------------------------------------------------- /download_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songgc/TF-recomm/HEAD/download_data.sh -------------------------------------------------------------------------------- /ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songgc/TF-recomm/HEAD/ops.py -------------------------------------------------------------------------------- /svd_train_val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songgc/TF-recomm/HEAD/svd_train_val.py --------------------------------------------------------------------------------