Improving-RNN-recommendation-model
Improving-RNN-recommendation-model copied to clipboard
Applied weight tying technique to RNN based recommendation model. Implemented with Tensorflow and Keras.
May I know the command line parameter when running LSTM_weight_tying(dim:100)
> (py3) λ python test.py -fr ktf -d data\movielns10k\ -b 512 --max_length 30 --r_l 30 --r_emb 30 > Using TensorFlow backend. > 2019-04-09 22:31:54.683881: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions...
1. The default batch size is 16 which is the root cause of taking too much time to train the data. when I changed the batch size as 512, the...