ITEliteCCY

Results 3 comments of ITEliteCCY

Hello,I also just looked at this code, I only saw PE layer, not the whole network structure, can you tell me where the whole network structure is? thanks much.

Hello,I also just looked at this code, I only saw PE layer, not the whole network structure, can you tell me where the whole network structure is? thanks much.

> 改成dill读取也是不行的,修改如下,把lambda换成apply就行了 > def numerize(tp): > # uid = map(lambda x: user2id[x], tp['user_id']) > # sid = map(lambda x: item2id[x], tp['item_id']) > tp['user_id'] = tp['user_id'].apply(lambda x:user2id[x]) > tp['item_id'] = tp['item_id'].apply(lambda...