knowledge-tracing-collection-pytorch icon indicating copy to clipboard operation
knowledge-tracing-collection-pytorch copied to clipboard

A collection of Knowledge Tracing model implementations with PyTorch

Results 2 knowledge-tracing-collection-pytorch issues
Sort by recently updated
recently updated
newest added

I have a question regarding your implementation. I'm doing some introspection in order to get some meaningful results regarding prediction in DKT. A modified version of the function _main_ of...

for q_seq, r_seq in batch: q_seqs.append(FloatTensor(q_seq[:-1])) r_seqs.append(FloatTensor(r_seq[:-1])) qshft_seqs.append(FloatTensor(q_seq[1:])) rshft_seqs.append(FloatTensor(r_seq[1:])) Through the code above When making q_seqs and qshft_seqs, q_seqs should cut one of the ends, and qshft_seqs should make data...