├── ACMR ├── README.md ├── model │ ├── adv_crossmodal_simple_nuswide.py │ ├── adv_crossmodal_simple_wiki.py │ ├── adv_crossmodal_triplet_wiki.py │ ├── base_model.py │ └── flip_gradient.py ├── train_adv_crossmodal_simple_nuswide.py ├── train_adv_crossmodal_simple_wiki.py └── train_adv_crossmodal_triplet_wiki.py ├── AFM ├── AFM.py ├── FM.py ├── LoadData.py └── README.md ├── BERT ├── README.md └── modeling_bert.py ├── BPR ├── BPR.py └── README.md ├── C3D ├── C3D_model.py ├── README.md └── predict.py ├── CLIP ├── README.md └── model.py ├── CTRL ├── README.md └── TALL.py ├── Capsules ├── CapsNet.py └── README.md ├── DCGAN ├── README.md ├── dcgan_keras.py └── dcgan_pytorch.py ├── DIN ├── Dice.py ├── README.md ├── build_dataset.py ├── input.py ├── model.py └── train.py ├── DRL-REC ├── README.md ├── build_estimator.py ├── pre_process_data.py ├── replay_buffer.py └── simulator.py ├── DeepWalk ├── README.md ├── classify.py ├── deepwalk.py └── deepwalk_wiki.py ├── GAE ├── README.md └── pytorch_geometric_gae.py ├── GAT ├── README.md ├── layers.py ├── models.py ├── train.py └── utils.py ├── GCN ├── README.md ├── keras_graph.py ├── keras_setup.py ├── keras_train.py ├── keras_utils.py └── pytorch_geometric_gcn.py ├── Graph-Transformer ├── README.md └── graph_transformer.py ├── GraphSAGE ├── README.md ├── aggregators.py ├── encoders.py └── model.py ├── HetGNN ├── DeepWalk.py ├── HetGNN.py ├── README.md └── tools.py ├── IRGAN ├── README.md ├── cf_dns.py ├── cf_gan.py ├── dis_model.py ├── dis_model_dns.py ├── gen_model.py └── utils.py ├── InfoGAN ├── README.md ├── main.py ├── model.py └── trainer.py ├── LightGCN ├── LightGCN.py └── README.md ├── Louvain ├── Louvain.py └── README.md ├── MIL-NCE ├── README.md ├── loss.py ├── main_distributed.py ├── s3dg.py └── video_loader.py ├── MLP-Mixer ├── README.md ├── models.py ├── models_mixer.py └── models_test.py ├── MoCo ├── MoCo.py └── README.md ├── NCF ├── Dataset.py ├── GMF.py ├── MLP.py ├── NeuMF.py ├── README.md └── evaluate.py ├── NFM ├── FM.py ├── NeuralFM.py └── README.md ├── NGCF ├── NGCF.py └── READEME.md ├── NTM ├── GSM.py ├── GSM_run.py ├── README.md └── vae.py ├── Non-local ├── README.md ├── network.py ├── non_local_concatenation.py ├── non_local_dot_product.py ├── non_local_embedded_gaussian.py └── non_local_gaussian.py ├── ONCF ├── ConvNCF.py ├── Dataset.py ├── MF_BPR.py ├── README.md └── saver.py ├── OpenPrompt ├── 0_basic.py └── README.md ├── README.md ├── RippleNet ├── README.md ├── data_loader.py ├── main.py ├── model.py ├── preprocess.py └── train.py ├── S2VT ├── Attention.py ├── DecoderRNN.py ├── EncoderRNN.py ├── README.md ├── S2VTAttModel.py └── S2VTModel.py ├── SR-GNN ├── README.md ├── main.py ├── model.py └── utils.py ├── Skip-Thought Vectors ├── Evaluate.py ├── README.md ├── data_loader.py ├── model.py ├── train.py └── vocab.py ├── SlowFast ├── README.md ├── keras_slowfast.py └── pytorch_slowfast.py ├── Transformer ├── README.md ├── Transformer.py └── nn.Transformer.py ├── UIE ├── README.md ├── convert.py └── model.py ├── VMT ├── README.md ├── dataloader.py ├── model.py ├── train.py └── utils.py ├── extractive_summarization ├── README.md └── extractive_summarization.py └── node2vec ├── README.md ├── classify.py ├── node2vec.py └── node2vec_wiki.py /ACMR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/ACMR/README.md -------------------------------------------------------------------------------- /ACMR/model/adv_crossmodal_simple_nuswide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/ACMR/model/adv_crossmodal_simple_nuswide.py -------------------------------------------------------------------------------- /ACMR/model/adv_crossmodal_simple_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/ACMR/model/adv_crossmodal_simple_wiki.py -------------------------------------------------------------------------------- /ACMR/model/adv_crossmodal_triplet_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/ACMR/model/adv_crossmodal_triplet_wiki.py -------------------------------------------------------------------------------- /ACMR/model/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/ACMR/model/base_model.py -------------------------------------------------------------------------------- /ACMR/model/flip_gradient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/ACMR/model/flip_gradient.py -------------------------------------------------------------------------------- /ACMR/train_adv_crossmodal_simple_nuswide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/ACMR/train_adv_crossmodal_simple_nuswide.py -------------------------------------------------------------------------------- /ACMR/train_adv_crossmodal_simple_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/ACMR/train_adv_crossmodal_simple_wiki.py -------------------------------------------------------------------------------- /ACMR/train_adv_crossmodal_triplet_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/ACMR/train_adv_crossmodal_triplet_wiki.py -------------------------------------------------------------------------------- /AFM/AFM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/AFM/AFM.py -------------------------------------------------------------------------------- /AFM/FM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/AFM/FM.py -------------------------------------------------------------------------------- /AFM/LoadData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/AFM/LoadData.py -------------------------------------------------------------------------------- /AFM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/AFM/README.md -------------------------------------------------------------------------------- /BERT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/BERT/README.md -------------------------------------------------------------------------------- /BERT/modeling_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/BERT/modeling_bert.py -------------------------------------------------------------------------------- /BPR/BPR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/BPR/BPR.py -------------------------------------------------------------------------------- /BPR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/BPR/README.md -------------------------------------------------------------------------------- /C3D/C3D_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/C3D/C3D_model.py -------------------------------------------------------------------------------- /C3D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/C3D/README.md -------------------------------------------------------------------------------- /C3D/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/C3D/predict.py -------------------------------------------------------------------------------- /CLIP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/CLIP/README.md -------------------------------------------------------------------------------- /CLIP/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/CLIP/model.py -------------------------------------------------------------------------------- /CTRL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/CTRL/README.md -------------------------------------------------------------------------------- /CTRL/TALL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/CTRL/TALL.py -------------------------------------------------------------------------------- /Capsules/CapsNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Capsules/CapsNet.py -------------------------------------------------------------------------------- /Capsules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Capsules/README.md -------------------------------------------------------------------------------- /DCGAN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/DCGAN/README.md -------------------------------------------------------------------------------- /DCGAN/dcgan_keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/DCGAN/dcgan_keras.py -------------------------------------------------------------------------------- /DCGAN/dcgan_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/DCGAN/dcgan_pytorch.py -------------------------------------------------------------------------------- /DIN/Dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/DIN/Dice.py -------------------------------------------------------------------------------- /DIN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/DIN/README.md -------------------------------------------------------------------------------- /DIN/build_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/DIN/build_dataset.py -------------------------------------------------------------------------------- /DIN/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/DIN/input.py -------------------------------------------------------------------------------- /DIN/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/DIN/model.py -------------------------------------------------------------------------------- /DIN/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/DIN/train.py -------------------------------------------------------------------------------- /DRL-REC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/DRL-REC/README.md -------------------------------------------------------------------------------- /DRL-REC/build_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/DRL-REC/build_estimator.py -------------------------------------------------------------------------------- /DRL-REC/pre_process_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/DRL-REC/pre_process_data.py -------------------------------------------------------------------------------- /DRL-REC/replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/DRL-REC/replay_buffer.py -------------------------------------------------------------------------------- /DRL-REC/simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/DRL-REC/simulator.py -------------------------------------------------------------------------------- /DeepWalk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/DeepWalk/README.md -------------------------------------------------------------------------------- /DeepWalk/classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/DeepWalk/classify.py -------------------------------------------------------------------------------- /DeepWalk/deepwalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/DeepWalk/deepwalk.py -------------------------------------------------------------------------------- /DeepWalk/deepwalk_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/DeepWalk/deepwalk_wiki.py -------------------------------------------------------------------------------- /GAE/README.md: -------------------------------------------------------------------------------- 1 | # Graph Auto-Encoders (GAE) 2 | 3 | 逐行源码阅读中文笔记。 4 | 5 | blog解读:https://blog.csdn.net/qq_39388410/article/details/107895198 6 | 7 | # 8 | 9 | 原code:pytorch_geomatric 10 | -------------------------------------------------------------------------------- /GAE/pytorch_geometric_gae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/GAE/pytorch_geometric_gae.py -------------------------------------------------------------------------------- /GAT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/GAT/README.md -------------------------------------------------------------------------------- /GAT/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/GAT/layers.py -------------------------------------------------------------------------------- /GAT/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/GAT/models.py -------------------------------------------------------------------------------- /GAT/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/GAT/train.py -------------------------------------------------------------------------------- /GAT/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/GAT/utils.py -------------------------------------------------------------------------------- /GCN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/GCN/README.md -------------------------------------------------------------------------------- /GCN/keras_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/GCN/keras_graph.py -------------------------------------------------------------------------------- /GCN/keras_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/GCN/keras_setup.py -------------------------------------------------------------------------------- /GCN/keras_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/GCN/keras_train.py -------------------------------------------------------------------------------- /GCN/keras_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/GCN/keras_utils.py -------------------------------------------------------------------------------- /GCN/pytorch_geometric_gcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/GCN/pytorch_geometric_gcn.py -------------------------------------------------------------------------------- /Graph-Transformer/README.md: -------------------------------------------------------------------------------- 1 | # Graph Transformer 2 | 3 | 逐行源码阅读中文笔记。 4 | -------------------------------------------------------------------------------- /Graph-Transformer/graph_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Graph-Transformer/graph_transformer.py -------------------------------------------------------------------------------- /GraphSAGE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/GraphSAGE/README.md -------------------------------------------------------------------------------- /GraphSAGE/aggregators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/GraphSAGE/aggregators.py -------------------------------------------------------------------------------- /GraphSAGE/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/GraphSAGE/encoders.py -------------------------------------------------------------------------------- /GraphSAGE/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/GraphSAGE/model.py -------------------------------------------------------------------------------- /HetGNN/DeepWalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/HetGNN/DeepWalk.py -------------------------------------------------------------------------------- /HetGNN/HetGNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/HetGNN/HetGNN.py -------------------------------------------------------------------------------- /HetGNN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/HetGNN/README.md -------------------------------------------------------------------------------- /HetGNN/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/HetGNN/tools.py -------------------------------------------------------------------------------- /IRGAN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/IRGAN/README.md -------------------------------------------------------------------------------- /IRGAN/cf_dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/IRGAN/cf_dns.py -------------------------------------------------------------------------------- /IRGAN/cf_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/IRGAN/cf_gan.py -------------------------------------------------------------------------------- /IRGAN/dis_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/IRGAN/dis_model.py -------------------------------------------------------------------------------- /IRGAN/dis_model_dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/IRGAN/dis_model_dns.py -------------------------------------------------------------------------------- /IRGAN/gen_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/IRGAN/gen_model.py -------------------------------------------------------------------------------- /IRGAN/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/IRGAN/utils.py -------------------------------------------------------------------------------- /InfoGAN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/InfoGAN/README.md -------------------------------------------------------------------------------- /InfoGAN/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/InfoGAN/main.py -------------------------------------------------------------------------------- /InfoGAN/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/InfoGAN/model.py -------------------------------------------------------------------------------- /InfoGAN/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/InfoGAN/trainer.py -------------------------------------------------------------------------------- /LightGCN/LightGCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/LightGCN/LightGCN.py -------------------------------------------------------------------------------- /LightGCN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/LightGCN/README.md -------------------------------------------------------------------------------- /Louvain/Louvain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Louvain/Louvain.py -------------------------------------------------------------------------------- /Louvain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Louvain/README.md -------------------------------------------------------------------------------- /MIL-NCE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/MIL-NCE/README.md -------------------------------------------------------------------------------- /MIL-NCE/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/MIL-NCE/loss.py -------------------------------------------------------------------------------- /MIL-NCE/main_distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/MIL-NCE/main_distributed.py -------------------------------------------------------------------------------- /MIL-NCE/s3dg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/MIL-NCE/s3dg.py -------------------------------------------------------------------------------- /MIL-NCE/video_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/MIL-NCE/video_loader.py -------------------------------------------------------------------------------- /MLP-Mixer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/MLP-Mixer/README.md -------------------------------------------------------------------------------- /MLP-Mixer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/MLP-Mixer/models.py -------------------------------------------------------------------------------- /MLP-Mixer/models_mixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/MLP-Mixer/models_mixer.py -------------------------------------------------------------------------------- /MLP-Mixer/models_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/MLP-Mixer/models_test.py -------------------------------------------------------------------------------- /MoCo/MoCo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/MoCo/MoCo.py -------------------------------------------------------------------------------- /MoCo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/MoCo/README.md -------------------------------------------------------------------------------- /NCF/Dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/NCF/Dataset.py -------------------------------------------------------------------------------- /NCF/GMF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/NCF/GMF.py -------------------------------------------------------------------------------- /NCF/MLP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/NCF/MLP.py -------------------------------------------------------------------------------- /NCF/NeuMF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/NCF/NeuMF.py -------------------------------------------------------------------------------- /NCF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/NCF/README.md -------------------------------------------------------------------------------- /NCF/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/NCF/evaluate.py -------------------------------------------------------------------------------- /NFM/FM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/NFM/FM.py -------------------------------------------------------------------------------- /NFM/NeuralFM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/NFM/NeuralFM.py -------------------------------------------------------------------------------- /NFM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/NFM/README.md -------------------------------------------------------------------------------- /NGCF/NGCF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/NGCF/NGCF.py -------------------------------------------------------------------------------- /NGCF/READEME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/NGCF/READEME.md -------------------------------------------------------------------------------- /NTM/GSM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/NTM/GSM.py -------------------------------------------------------------------------------- /NTM/GSM_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/NTM/GSM_run.py -------------------------------------------------------------------------------- /NTM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/NTM/README.md -------------------------------------------------------------------------------- /NTM/vae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/NTM/vae.py -------------------------------------------------------------------------------- /Non-local/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Non-local/README.md -------------------------------------------------------------------------------- /Non-local/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Non-local/network.py -------------------------------------------------------------------------------- /Non-local/non_local_concatenation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Non-local/non_local_concatenation.py -------------------------------------------------------------------------------- /Non-local/non_local_dot_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Non-local/non_local_dot_product.py -------------------------------------------------------------------------------- /Non-local/non_local_embedded_gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Non-local/non_local_embedded_gaussian.py -------------------------------------------------------------------------------- /Non-local/non_local_gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Non-local/non_local_gaussian.py -------------------------------------------------------------------------------- /ONCF/ConvNCF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/ONCF/ConvNCF.py -------------------------------------------------------------------------------- /ONCF/Dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/ONCF/Dataset.py -------------------------------------------------------------------------------- /ONCF/MF_BPR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/ONCF/MF_BPR.py -------------------------------------------------------------------------------- /ONCF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/ONCF/README.md -------------------------------------------------------------------------------- /ONCF/saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/ONCF/saver.py -------------------------------------------------------------------------------- /OpenPrompt/0_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/OpenPrompt/0_basic.py -------------------------------------------------------------------------------- /OpenPrompt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/OpenPrompt/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/README.md -------------------------------------------------------------------------------- /RippleNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/RippleNet/README.md -------------------------------------------------------------------------------- /RippleNet/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/RippleNet/data_loader.py -------------------------------------------------------------------------------- /RippleNet/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/RippleNet/main.py -------------------------------------------------------------------------------- /RippleNet/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/RippleNet/model.py -------------------------------------------------------------------------------- /RippleNet/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/RippleNet/preprocess.py -------------------------------------------------------------------------------- /RippleNet/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/RippleNet/train.py -------------------------------------------------------------------------------- /S2VT/Attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/S2VT/Attention.py -------------------------------------------------------------------------------- /S2VT/DecoderRNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/S2VT/DecoderRNN.py -------------------------------------------------------------------------------- /S2VT/EncoderRNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/S2VT/EncoderRNN.py -------------------------------------------------------------------------------- /S2VT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/S2VT/README.md -------------------------------------------------------------------------------- /S2VT/S2VTAttModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/S2VT/S2VTAttModel.py -------------------------------------------------------------------------------- /S2VT/S2VTModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/S2VT/S2VTModel.py -------------------------------------------------------------------------------- /SR-GNN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/SR-GNN/README.md -------------------------------------------------------------------------------- /SR-GNN/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/SR-GNN/main.py -------------------------------------------------------------------------------- /SR-GNN/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/SR-GNN/model.py -------------------------------------------------------------------------------- /SR-GNN/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/SR-GNN/utils.py -------------------------------------------------------------------------------- /Skip-Thought Vectors/Evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Skip-Thought Vectors/Evaluate.py -------------------------------------------------------------------------------- /Skip-Thought Vectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Skip-Thought Vectors/README.md -------------------------------------------------------------------------------- /Skip-Thought Vectors/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Skip-Thought Vectors/data_loader.py -------------------------------------------------------------------------------- /Skip-Thought Vectors/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Skip-Thought Vectors/model.py -------------------------------------------------------------------------------- /Skip-Thought Vectors/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Skip-Thought Vectors/train.py -------------------------------------------------------------------------------- /Skip-Thought Vectors/vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Skip-Thought Vectors/vocab.py -------------------------------------------------------------------------------- /SlowFast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/SlowFast/README.md -------------------------------------------------------------------------------- /SlowFast/keras_slowfast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/SlowFast/keras_slowfast.py -------------------------------------------------------------------------------- /SlowFast/pytorch_slowfast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/SlowFast/pytorch_slowfast.py -------------------------------------------------------------------------------- /Transformer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Transformer/README.md -------------------------------------------------------------------------------- /Transformer/Transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Transformer/Transformer.py -------------------------------------------------------------------------------- /Transformer/nn.Transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/Transformer/nn.Transformer.py -------------------------------------------------------------------------------- /UIE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/UIE/README.md -------------------------------------------------------------------------------- /UIE/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/UIE/convert.py -------------------------------------------------------------------------------- /UIE/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/UIE/model.py -------------------------------------------------------------------------------- /VMT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/VMT/README.md -------------------------------------------------------------------------------- /VMT/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/VMT/dataloader.py -------------------------------------------------------------------------------- /VMT/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/VMT/model.py -------------------------------------------------------------------------------- /VMT/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/VMT/train.py -------------------------------------------------------------------------------- /VMT/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/VMT/utils.py -------------------------------------------------------------------------------- /extractive_summarization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/extractive_summarization/README.md -------------------------------------------------------------------------------- /extractive_summarization/extractive_summarization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/extractive_summarization/extractive_summarization.py -------------------------------------------------------------------------------- /node2vec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/node2vec/README.md -------------------------------------------------------------------------------- /node2vec/classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/node2vec/classify.py -------------------------------------------------------------------------------- /node2vec/node2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/node2vec/node2vec.py -------------------------------------------------------------------------------- /node2vec/node2vec_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nakaizura/Source-Code-Notebook/HEAD/node2vec/node2vec_wiki.py --------------------------------------------------------------------------------