├── .gitignore ├── Conversation ├── Transformer │ ├── .vscode │ │ └── settings.json │ ├── __pycache__ │ │ ├── dataset.cpython-36.pyc │ │ ├── dataset.cpython-37.pyc │ │ ├── dataset.cpython-38.pyc │ │ ├── model.cpython-36.pyc │ │ ├── model.cpython-37.pyc │ │ └── model.cpython-38.pyc │ ├── dataset.py │ ├── model.py │ ├── models │ │ ├── __pycache__ │ │ │ ├── graph.cpython-36.pyc │ │ │ ├── graph.cpython-37.pyc │ │ │ ├── graph.cpython-38.pyc │ │ │ ├── transformer.cpython-36.pyc │ │ │ ├── transformer.cpython-37.pyc │ │ │ ├── transformer.cpython-38.pyc │ │ │ ├── utils.cpython-36.pyc │ │ │ ├── utils.cpython-37.pyc │ │ │ └── utils.cpython-38.pyc │ │ ├── graph.py │ │ ├── transformer.py │ │ └── utils.py │ ├── note │ ├── output │ │ ├── output_test_both_epoch_-1.txt │ │ ├── output_test_gen_epoch_-1.txt │ │ ├── output_test_gt_epoch_-1.txt │ │ └── tf_bpe2index.json │ ├── run.py │ └── script │ │ ├── BLEU_scorer.py │ │ ├── Dist_scorer.py │ │ ├── check_gpu.py │ │ ├── test.sh │ │ ├── test_gene_metric.sh │ │ └── train.sh └── Union │ ├── .vscode │ └── settings.json │ ├── __init__.py │ ├── __pycache__ │ ├── dataset.cpython-36.pyc │ ├── dataset.cpython-38.pyc │ ├── train.cpython-36.pyc │ └── train.cpython-38.pyc │ ├── config │ └── model_config_dialogue_small.json │ ├── dataset.py │ ├── generation │ ├── v11051_gen_output.txt │ └── v1116_gpt2_gen_output.txt │ ├── models │ ├── __pycache__ │ │ ├── train_loop.cpython-38.pyc │ │ └── utils.cpython-38.pyc │ ├── train_loop.py │ └── utils.py │ ├── run.py │ ├── script │ ├── GPT2 │ │ ├── BLEU_scorer.py │ │ ├── Dist_scorer.py │ │ ├── generate.sh │ │ ├── prepare_data.sh │ │ ├── test_gene_metric.sh │ │ ├── test_ppl.sh │ │ └── train.sh │ └── Ours │ │ ├── BLEU_scorer.py │ │ ├── Dist_scorer.py │ │ ├── generate.sh │ │ ├── prepare_data.sh │ │ ├── test_gene_metric.sh │ │ ├── test_ppl.sh │ │ └── train.sh │ └── vocabulary │ └── vocab_small.txt ├── LICENSE ├── README.md ├── Recommender ├── GRU4Rec │ ├── __pycache__ │ │ ├── dataset.cpython-36.pyc │ │ ├── dataset.cpython-37.pyc │ │ ├── dataset.cpython-38.pyc │ │ ├── model.cpython-36.pyc │ │ ├── model.cpython-37.pyc │ │ └── model.cpython-38.pyc │ ├── dataset.py │ ├── empty_conv_ids.txt │ ├── model.py │ ├── run2.py │ └── script │ │ ├── test.sh │ │ └── train.sh ├── TextCNN │ ├── __pycache__ │ │ ├── dataset.cpython-36.pyc │ │ ├── dataset.cpython-37.pyc │ │ ├── dataset.cpython-38.pyc │ │ ├── model.cpython-36.pyc │ │ └── model.cpython-38.pyc │ ├── dataset.py │ ├── model.py │ ├── run2.py │ └── script │ │ ├── test.sh │ │ └── train.sh └── Union │ ├── .vscode │ └── settings.json │ ├── __pycache__ │ ├── dataset.cpython-36.pyc │ ├── dataset.cpython-37.pyc │ ├── dataset.cpython-38.pyc │ ├── dataset_p.cpython-38.pyc │ ├── model.cpython-36.pyc │ └── model.cpython-38.pyc │ ├── dataset.py │ ├── dataset_p.py │ ├── empty_conv_ids.txt │ ├── model.py │ ├── models │ ├── __pycache__ │ │ ├── module.cpython-36.pyc │ │ └── module.cpython-38.pyc │ ├── module.py │ └── utils.py │ ├── run2.py │ ├── run2_p.py │ └── script │ ├── gen_pred_mids.sh │ ├── move_sasrec_embed.sh │ ├── test_BERT.sh │ ├── test_Ours.sh │ ├── test_SASRec.sh │ ├── train_BERT.sh │ ├── train_Ours.sh │ └── train_SASRec.sh ├── TopicGuiding ├── .vscode │ └── settings.json ├── Conv_BERT │ ├── __pycache__ │ │ ├── dataset.cpython-36.pyc │ │ ├── dataset.cpython-37.pyc │ │ ├── dataset.cpython-38.pyc │ │ ├── model.cpython-36.pyc │ │ ├── model.cpython-37.pyc │ │ └── model.cpython-38.pyc │ ├── conv_id_no_messages.txt │ ├── dataset.py │ ├── model.py │ ├── run2.py │ └── script │ │ ├── test.sh │ │ └── train.sh ├── MGCG │ ├── __pycache__ │ │ ├── dataset.cpython-36.pyc │ │ ├── dataset.cpython-38.pyc │ │ ├── model.cpython-36.pyc │ │ └── model.cpython-38.pyc │ ├── conv_id_no_messages.txt │ ├── dataset.py │ ├── model.py │ ├── run2.py │ └── script │ │ ├── test.sh │ │ └── train.sh ├── Ours │ ├── __pycache__ │ │ ├── dataset.cpython-36.pyc │ │ ├── dataset.cpython-37.pyc │ │ ├── dataset.cpython-38.pyc │ │ ├── model.cpython-36.pyc │ │ └── model.cpython-38.pyc │ ├── dataset.py │ ├── model.py │ ├── run2.py │ └── script │ │ ├── test.sh │ │ └── train.sh ├── Ours_wo_Target │ ├── __pycache__ │ │ ├── dataset.cpython-36.pyc │ │ ├── dataset.cpython-37.pyc │ │ ├── dataset.cpython-38.pyc │ │ ├── model.cpython-36.pyc │ │ ├── model.cpython-37.pyc │ │ └── model.cpython-38.pyc │ ├── conv_id_no_messages.txt │ ├── dataset.py │ ├── model.py │ ├── run2.py │ └── script │ │ ├── test.sh │ │ └── train.sh ├── Profile_BERT │ ├── __pycache__ │ │ ├── dataset.cpython-36.pyc │ │ ├── dataset.cpython-37.pyc │ │ ├── dataset.cpython-38.pyc │ │ ├── model.cpython-36.pyc │ │ ├── model.cpython-37.pyc │ │ └── model.cpython-38.pyc │ ├── dataset.py │ ├── model.py │ ├── run2.py │ └── script │ │ ├── test.sh │ │ └── train.sh └── Topic_BERT │ ├── __pycache__ │ ├── dataset.cpython-36.pyc │ ├── dataset.cpython-37.pyc │ ├── dataset.cpython-38.pyc │ ├── model.cpython-36.pyc │ ├── model.cpython-37.pyc │ └── model.cpython-38.pyc │ ├── dataset.py │ ├── model.py │ ├── run2.py │ └── script │ ├── test.sh │ └── train.sh ├── requirements.txt ├── table1.png ├── table2.png └── table3.png /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /Conversation/Transformer/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/.vscode/settings.json -------------------------------------------------------------------------------- /Conversation/Transformer/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /Conversation/Transformer/__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /Conversation/Transformer/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /Conversation/Transformer/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /Conversation/Transformer/__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/__pycache__/model.cpython-37.pyc -------------------------------------------------------------------------------- /Conversation/Transformer/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /Conversation/Transformer/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/dataset.py -------------------------------------------------------------------------------- /Conversation/Transformer/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/model.py -------------------------------------------------------------------------------- /Conversation/Transformer/models/__pycache__/graph.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/models/__pycache__/graph.cpython-36.pyc -------------------------------------------------------------------------------- /Conversation/Transformer/models/__pycache__/graph.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/models/__pycache__/graph.cpython-37.pyc -------------------------------------------------------------------------------- /Conversation/Transformer/models/__pycache__/graph.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/models/__pycache__/graph.cpython-38.pyc -------------------------------------------------------------------------------- /Conversation/Transformer/models/__pycache__/transformer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/models/__pycache__/transformer.cpython-36.pyc -------------------------------------------------------------------------------- /Conversation/Transformer/models/__pycache__/transformer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/models/__pycache__/transformer.cpython-37.pyc -------------------------------------------------------------------------------- /Conversation/Transformer/models/__pycache__/transformer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/models/__pycache__/transformer.cpython-38.pyc -------------------------------------------------------------------------------- /Conversation/Transformer/models/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/models/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /Conversation/Transformer/models/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/models/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /Conversation/Transformer/models/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/models/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /Conversation/Transformer/models/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/models/graph.py -------------------------------------------------------------------------------- /Conversation/Transformer/models/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/models/transformer.py -------------------------------------------------------------------------------- /Conversation/Transformer/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/models/utils.py -------------------------------------------------------------------------------- /Conversation/Transformer/note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/note -------------------------------------------------------------------------------- /Conversation/Transformer/output/output_test_both_epoch_-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/output/output_test_both_epoch_-1.txt -------------------------------------------------------------------------------- /Conversation/Transformer/output/output_test_gen_epoch_-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/output/output_test_gen_epoch_-1.txt -------------------------------------------------------------------------------- /Conversation/Transformer/output/output_test_gt_epoch_-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/output/output_test_gt_epoch_-1.txt -------------------------------------------------------------------------------- /Conversation/Transformer/output/tf_bpe2index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/output/tf_bpe2index.json -------------------------------------------------------------------------------- /Conversation/Transformer/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/run.py -------------------------------------------------------------------------------- /Conversation/Transformer/script/BLEU_scorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/script/BLEU_scorer.py -------------------------------------------------------------------------------- /Conversation/Transformer/script/Dist_scorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/script/Dist_scorer.py -------------------------------------------------------------------------------- /Conversation/Transformer/script/check_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/script/check_gpu.py -------------------------------------------------------------------------------- /Conversation/Transformer/script/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/script/test.sh -------------------------------------------------------------------------------- /Conversation/Transformer/script/test_gene_metric.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/script/test_gene_metric.sh -------------------------------------------------------------------------------- /Conversation/Transformer/script/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Transformer/script/train.sh -------------------------------------------------------------------------------- /Conversation/Union/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/.vscode/settings.json -------------------------------------------------------------------------------- /Conversation/Union/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Conversation/Union/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /Conversation/Union/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /Conversation/Union/__pycache__/train.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/__pycache__/train.cpython-36.pyc -------------------------------------------------------------------------------- /Conversation/Union/__pycache__/train.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/__pycache__/train.cpython-38.pyc -------------------------------------------------------------------------------- /Conversation/Union/config/model_config_dialogue_small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/config/model_config_dialogue_small.json -------------------------------------------------------------------------------- /Conversation/Union/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/dataset.py -------------------------------------------------------------------------------- /Conversation/Union/generation/v11051_gen_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/generation/v11051_gen_output.txt -------------------------------------------------------------------------------- /Conversation/Union/generation/v1116_gpt2_gen_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/generation/v1116_gpt2_gen_output.txt -------------------------------------------------------------------------------- /Conversation/Union/models/__pycache__/train_loop.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/models/__pycache__/train_loop.cpython-38.pyc -------------------------------------------------------------------------------- /Conversation/Union/models/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/models/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /Conversation/Union/models/train_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/models/train_loop.py -------------------------------------------------------------------------------- /Conversation/Union/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/models/utils.py -------------------------------------------------------------------------------- /Conversation/Union/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/run.py -------------------------------------------------------------------------------- /Conversation/Union/script/GPT2/BLEU_scorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/script/GPT2/BLEU_scorer.py -------------------------------------------------------------------------------- /Conversation/Union/script/GPT2/Dist_scorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/script/GPT2/Dist_scorer.py -------------------------------------------------------------------------------- /Conversation/Union/script/GPT2/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/script/GPT2/generate.sh -------------------------------------------------------------------------------- /Conversation/Union/script/GPT2/prepare_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/script/GPT2/prepare_data.sh -------------------------------------------------------------------------------- /Conversation/Union/script/GPT2/test_gene_metric.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/script/GPT2/test_gene_metric.sh -------------------------------------------------------------------------------- /Conversation/Union/script/GPT2/test_ppl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/script/GPT2/test_ppl.sh -------------------------------------------------------------------------------- /Conversation/Union/script/GPT2/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/script/GPT2/train.sh -------------------------------------------------------------------------------- /Conversation/Union/script/Ours/BLEU_scorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/script/Ours/BLEU_scorer.py -------------------------------------------------------------------------------- /Conversation/Union/script/Ours/Dist_scorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/script/Ours/Dist_scorer.py -------------------------------------------------------------------------------- /Conversation/Union/script/Ours/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/script/Ours/generate.sh -------------------------------------------------------------------------------- /Conversation/Union/script/Ours/prepare_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/script/Ours/prepare_data.sh -------------------------------------------------------------------------------- /Conversation/Union/script/Ours/test_gene_metric.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/script/Ours/test_gene_metric.sh -------------------------------------------------------------------------------- /Conversation/Union/script/Ours/test_ppl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/script/Ours/test_ppl.sh -------------------------------------------------------------------------------- /Conversation/Union/script/Ours/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/script/Ours/train.sh -------------------------------------------------------------------------------- /Conversation/Union/vocabulary/vocab_small.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Conversation/Union/vocabulary/vocab_small.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/README.md -------------------------------------------------------------------------------- /Recommender/GRU4Rec/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/GRU4Rec/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /Recommender/GRU4Rec/__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/GRU4Rec/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /Recommender/GRU4Rec/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/GRU4Rec/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /Recommender/GRU4Rec/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/GRU4Rec/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /Recommender/GRU4Rec/__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/GRU4Rec/__pycache__/model.cpython-37.pyc -------------------------------------------------------------------------------- /Recommender/GRU4Rec/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/GRU4Rec/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /Recommender/GRU4Rec/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/GRU4Rec/dataset.py -------------------------------------------------------------------------------- /Recommender/GRU4Rec/empty_conv_ids.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Recommender/GRU4Rec/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/GRU4Rec/model.py -------------------------------------------------------------------------------- /Recommender/GRU4Rec/run2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/GRU4Rec/run2.py -------------------------------------------------------------------------------- /Recommender/GRU4Rec/script/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/GRU4Rec/script/test.sh -------------------------------------------------------------------------------- /Recommender/GRU4Rec/script/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/GRU4Rec/script/train.sh -------------------------------------------------------------------------------- /Recommender/TextCNN/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/TextCNN/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /Recommender/TextCNN/__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/TextCNN/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /Recommender/TextCNN/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/TextCNN/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /Recommender/TextCNN/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/TextCNN/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /Recommender/TextCNN/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/TextCNN/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /Recommender/TextCNN/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/TextCNN/dataset.py -------------------------------------------------------------------------------- /Recommender/TextCNN/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/TextCNN/model.py -------------------------------------------------------------------------------- /Recommender/TextCNN/run2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/TextCNN/run2.py -------------------------------------------------------------------------------- /Recommender/TextCNN/script/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/TextCNN/script/test.sh -------------------------------------------------------------------------------- /Recommender/TextCNN/script/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/TextCNN/script/train.sh -------------------------------------------------------------------------------- /Recommender/Union/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/.vscode/settings.json -------------------------------------------------------------------------------- /Recommender/Union/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /Recommender/Union/__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /Recommender/Union/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /Recommender/Union/__pycache__/dataset_p.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/__pycache__/dataset_p.cpython-38.pyc -------------------------------------------------------------------------------- /Recommender/Union/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /Recommender/Union/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /Recommender/Union/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/dataset.py -------------------------------------------------------------------------------- /Recommender/Union/dataset_p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/dataset_p.py -------------------------------------------------------------------------------- /Recommender/Union/empty_conv_ids.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Recommender/Union/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/model.py -------------------------------------------------------------------------------- /Recommender/Union/models/__pycache__/module.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/models/__pycache__/module.cpython-36.pyc -------------------------------------------------------------------------------- /Recommender/Union/models/__pycache__/module.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/models/__pycache__/module.cpython-38.pyc -------------------------------------------------------------------------------- /Recommender/Union/models/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/models/module.py -------------------------------------------------------------------------------- /Recommender/Union/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/models/utils.py -------------------------------------------------------------------------------- /Recommender/Union/run2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/run2.py -------------------------------------------------------------------------------- /Recommender/Union/run2_p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/run2_p.py -------------------------------------------------------------------------------- /Recommender/Union/script/gen_pred_mids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/script/gen_pred_mids.sh -------------------------------------------------------------------------------- /Recommender/Union/script/move_sasrec_embed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/script/move_sasrec_embed.sh -------------------------------------------------------------------------------- /Recommender/Union/script/test_BERT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/script/test_BERT.sh -------------------------------------------------------------------------------- /Recommender/Union/script/test_Ours.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/script/test_Ours.sh -------------------------------------------------------------------------------- /Recommender/Union/script/test_SASRec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/script/test_SASRec.sh -------------------------------------------------------------------------------- /Recommender/Union/script/train_BERT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/script/train_BERT.sh -------------------------------------------------------------------------------- /Recommender/Union/script/train_Ours.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/script/train_Ours.sh -------------------------------------------------------------------------------- /Recommender/Union/script/train_SASRec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/Recommender/Union/script/train_SASRec.sh -------------------------------------------------------------------------------- /TopicGuiding/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/.vscode/settings.json -------------------------------------------------------------------------------- /TopicGuiding/Conv_BERT/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Conv_BERT/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /TopicGuiding/Conv_BERT/__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Conv_BERT/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /TopicGuiding/Conv_BERT/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Conv_BERT/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /TopicGuiding/Conv_BERT/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Conv_BERT/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /TopicGuiding/Conv_BERT/__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Conv_BERT/__pycache__/model.cpython-37.pyc -------------------------------------------------------------------------------- /TopicGuiding/Conv_BERT/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Conv_BERT/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /TopicGuiding/Conv_BERT/conv_id_no_messages.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TopicGuiding/Conv_BERT/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Conv_BERT/dataset.py -------------------------------------------------------------------------------- /TopicGuiding/Conv_BERT/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Conv_BERT/model.py -------------------------------------------------------------------------------- /TopicGuiding/Conv_BERT/run2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Conv_BERT/run2.py -------------------------------------------------------------------------------- /TopicGuiding/Conv_BERT/script/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Conv_BERT/script/test.sh -------------------------------------------------------------------------------- /TopicGuiding/Conv_BERT/script/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Conv_BERT/script/train.sh -------------------------------------------------------------------------------- /TopicGuiding/MGCG/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/MGCG/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /TopicGuiding/MGCG/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/MGCG/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /TopicGuiding/MGCG/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/MGCG/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /TopicGuiding/MGCG/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/MGCG/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /TopicGuiding/MGCG/conv_id_no_messages.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TopicGuiding/MGCG/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/MGCG/dataset.py -------------------------------------------------------------------------------- /TopicGuiding/MGCG/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/MGCG/model.py -------------------------------------------------------------------------------- /TopicGuiding/MGCG/run2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/MGCG/run2.py -------------------------------------------------------------------------------- /TopicGuiding/MGCG/script/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/MGCG/script/test.sh -------------------------------------------------------------------------------- /TopicGuiding/MGCG/script/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/MGCG/script/train.sh -------------------------------------------------------------------------------- /TopicGuiding/Ours/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /TopicGuiding/Ours/__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /TopicGuiding/Ours/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /TopicGuiding/Ours/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /TopicGuiding/Ours/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /TopicGuiding/Ours/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours/dataset.py -------------------------------------------------------------------------------- /TopicGuiding/Ours/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours/model.py -------------------------------------------------------------------------------- /TopicGuiding/Ours/run2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours/run2.py -------------------------------------------------------------------------------- /TopicGuiding/Ours/script/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours/script/test.sh -------------------------------------------------------------------------------- /TopicGuiding/Ours/script/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours/script/train.sh -------------------------------------------------------------------------------- /TopicGuiding/Ours_wo_Target/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours_wo_Target/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /TopicGuiding/Ours_wo_Target/__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours_wo_Target/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /TopicGuiding/Ours_wo_Target/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours_wo_Target/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /TopicGuiding/Ours_wo_Target/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours_wo_Target/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /TopicGuiding/Ours_wo_Target/__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours_wo_Target/__pycache__/model.cpython-37.pyc -------------------------------------------------------------------------------- /TopicGuiding/Ours_wo_Target/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours_wo_Target/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /TopicGuiding/Ours_wo_Target/conv_id_no_messages.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TopicGuiding/Ours_wo_Target/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours_wo_Target/dataset.py -------------------------------------------------------------------------------- /TopicGuiding/Ours_wo_Target/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours_wo_Target/model.py -------------------------------------------------------------------------------- /TopicGuiding/Ours_wo_Target/run2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours_wo_Target/run2.py -------------------------------------------------------------------------------- /TopicGuiding/Ours_wo_Target/script/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours_wo_Target/script/test.sh -------------------------------------------------------------------------------- /TopicGuiding/Ours_wo_Target/script/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Ours_wo_Target/script/train.sh -------------------------------------------------------------------------------- /TopicGuiding/Profile_BERT/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Profile_BERT/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /TopicGuiding/Profile_BERT/__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Profile_BERT/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /TopicGuiding/Profile_BERT/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Profile_BERT/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /TopicGuiding/Profile_BERT/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Profile_BERT/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /TopicGuiding/Profile_BERT/__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Profile_BERT/__pycache__/model.cpython-37.pyc -------------------------------------------------------------------------------- /TopicGuiding/Profile_BERT/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Profile_BERT/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /TopicGuiding/Profile_BERT/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Profile_BERT/dataset.py -------------------------------------------------------------------------------- /TopicGuiding/Profile_BERT/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Profile_BERT/model.py -------------------------------------------------------------------------------- /TopicGuiding/Profile_BERT/run2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Profile_BERT/run2.py -------------------------------------------------------------------------------- /TopicGuiding/Profile_BERT/script/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Profile_BERT/script/test.sh -------------------------------------------------------------------------------- /TopicGuiding/Profile_BERT/script/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Profile_BERT/script/train.sh -------------------------------------------------------------------------------- /TopicGuiding/Topic_BERT/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Topic_BERT/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /TopicGuiding/Topic_BERT/__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Topic_BERT/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /TopicGuiding/Topic_BERT/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Topic_BERT/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /TopicGuiding/Topic_BERT/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Topic_BERT/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /TopicGuiding/Topic_BERT/__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Topic_BERT/__pycache__/model.cpython-37.pyc -------------------------------------------------------------------------------- /TopicGuiding/Topic_BERT/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Topic_BERT/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /TopicGuiding/Topic_BERT/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Topic_BERT/dataset.py -------------------------------------------------------------------------------- /TopicGuiding/Topic_BERT/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Topic_BERT/model.py -------------------------------------------------------------------------------- /TopicGuiding/Topic_BERT/run2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Topic_BERT/run2.py -------------------------------------------------------------------------------- /TopicGuiding/Topic_BERT/script/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Topic_BERT/script/test.sh -------------------------------------------------------------------------------- /TopicGuiding/Topic_BERT/script/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/TopicGuiding/Topic_BERT/script/train.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/requirements.txt -------------------------------------------------------------------------------- /table1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/table1.png -------------------------------------------------------------------------------- /table2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/table2.png -------------------------------------------------------------------------------- /table3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/TG_CRS_Code/HEAD/table3.png --------------------------------------------------------------------------------