You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a question regarding the support matrix data. From the code, it seems you are using train rating matrix as a full dataset to generate also test support matrix.
rating support matrix rating_mx_train is generated from training rating data. (in testing, it contains training and validation data).
Shouldn't we change line 192 to rating_mx_train[idx_nonzero] = labels[idx_nonzero].astype(np.float32) + 1.0
such that all rating_mx_train contains all rating data.
Hi Rianne,
I have a question regarding the support matrix data. From the code, it seems you are using train rating matrix as a full dataset to generate also test support matrix.
rating support matrix
rating_mx_train
is generated from training rating data. (in testing, it contains training and validation data).gc-mc/gcmc/preprocessing.py
Lines 191 to 193 in 722f37d
support matrix is generated from the adj_train which is the
rating_mx_train
gc-mc/gcmc/train.py
Lines 203 to 216 in 722f37d
But then 'test_support' is extracted from 'support'.
gc-mc/gcmc/train.py
Line 246 in 722f37d
Shouldn't we change line 192 to
rating_mx_train[idx_nonzero] = labels[idx_nonzero].astype(np.float32) + 1.0
such that all rating_mx_train contains all rating data.
gc-mc/gcmc/preprocessing.py
Lines 191 to 193 in 722f37d
The text was updated successfully, but these errors were encountered: