├── .gitignore ├── LICENSE ├── README.md ├── assets ├── Oh-My-Papers a Hybrid Context-aware Paper Recommendation System.pdf └── imgs │ ├── bert.png │ ├── citation-bert.png │ ├── citation.png │ ├── oh-my-papers.png │ └── vgae.png ├── configs ├── bert.yaml ├── bert_cased.yaml ├── bert_uncased.yaml ├── citation_bert.yaml ├── citation_bert_cased.yaml ├── citation_bert_uncased.yaml ├── data_preparation.yaml └── vgae.yaml ├── data_preparation ├── paper_formatter.py ├── preprocessor.py └── tiny_dataset.py ├── dataset.py ├── docs ├── configurations.md ├── data_preparation.md ├── evaluation.md ├── inference.md ├── models.md └── pretrained_models.md ├── eval_bert.py ├── eval_citation_bert.py ├── examples ├── citation-res.json ├── citation.json ├── context-res.json ├── context.json ├── relation-res.json └── relation.json ├── inference.py ├── inference_bert.py ├── inference_citation_bert.py ├── inference_vgae.py ├── models ├── __init__.py ├── bert.py ├── models.py └── vgae.py ├── requirements.txt ├── train_bert.py ├── train_citation_bert.py ├── train_vgae.py └── utils ├── __init__.py ├── criterion.py ├── logger.py ├── matching.py ├── metrics.py └── preprocessing.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/README.md -------------------------------------------------------------------------------- /assets/Oh-My-Papers a Hybrid Context-aware Paper Recommendation System.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/assets/Oh-My-Papers a Hybrid Context-aware Paper Recommendation System.pdf -------------------------------------------------------------------------------- /assets/imgs/bert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/assets/imgs/bert.png -------------------------------------------------------------------------------- /assets/imgs/citation-bert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/assets/imgs/citation-bert.png -------------------------------------------------------------------------------- /assets/imgs/citation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/assets/imgs/citation.png -------------------------------------------------------------------------------- /assets/imgs/oh-my-papers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/assets/imgs/oh-my-papers.png -------------------------------------------------------------------------------- /assets/imgs/vgae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/assets/imgs/vgae.png -------------------------------------------------------------------------------- /configs/bert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/configs/bert.yaml -------------------------------------------------------------------------------- /configs/bert_cased.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/configs/bert_cased.yaml -------------------------------------------------------------------------------- /configs/bert_uncased.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/configs/bert_uncased.yaml -------------------------------------------------------------------------------- /configs/citation_bert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/configs/citation_bert.yaml -------------------------------------------------------------------------------- /configs/citation_bert_cased.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/configs/citation_bert_cased.yaml -------------------------------------------------------------------------------- /configs/citation_bert_uncased.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/configs/citation_bert_uncased.yaml -------------------------------------------------------------------------------- /configs/data_preparation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/configs/data_preparation.yaml -------------------------------------------------------------------------------- /configs/vgae.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/configs/vgae.yaml -------------------------------------------------------------------------------- /data_preparation/paper_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/data_preparation/paper_formatter.py -------------------------------------------------------------------------------- /data_preparation/preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/data_preparation/preprocessor.py -------------------------------------------------------------------------------- /data_preparation/tiny_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/data_preparation/tiny_dataset.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/dataset.py -------------------------------------------------------------------------------- /docs/configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/docs/configurations.md -------------------------------------------------------------------------------- /docs/data_preparation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/docs/data_preparation.md -------------------------------------------------------------------------------- /docs/evaluation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/docs/evaluation.md -------------------------------------------------------------------------------- /docs/inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/docs/inference.md -------------------------------------------------------------------------------- /docs/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/docs/models.md -------------------------------------------------------------------------------- /docs/pretrained_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/docs/pretrained_models.md -------------------------------------------------------------------------------- /eval_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/eval_bert.py -------------------------------------------------------------------------------- /eval_citation_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/eval_citation_bert.py -------------------------------------------------------------------------------- /examples/citation-res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/examples/citation-res.json -------------------------------------------------------------------------------- /examples/citation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/examples/citation.json -------------------------------------------------------------------------------- /examples/context-res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/examples/context-res.json -------------------------------------------------------------------------------- /examples/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/examples/context.json -------------------------------------------------------------------------------- /examples/relation-res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/examples/relation-res.json -------------------------------------------------------------------------------- /examples/relation.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": 65 3 | } -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/inference.py -------------------------------------------------------------------------------- /inference_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/inference_bert.py -------------------------------------------------------------------------------- /inference_citation_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/inference_citation_bert.py -------------------------------------------------------------------------------- /inference_vgae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/inference_vgae.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/models/bert.py -------------------------------------------------------------------------------- /models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/models/models.py -------------------------------------------------------------------------------- /models/vgae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/models/vgae.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/requirements.txt -------------------------------------------------------------------------------- /train_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/train_bert.py -------------------------------------------------------------------------------- /train_citation_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/train_citation_bert.py -------------------------------------------------------------------------------- /train_vgae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/train_vgae.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/criterion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/utils/criterion.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/utils/matching.py -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/utils/metrics.py -------------------------------------------------------------------------------- /utils/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies99/oh-my-papers/HEAD/utils/preprocessing.py --------------------------------------------------------------------------------