├── README.md ├── data └── README.md ├── data_utils.py ├── demo.py ├── intro-gap.png ├── main.py ├── model.py ├── requirements.txt ├── spec-file.txt └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixinL7/Refactoring-Summarization/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | Add your data here -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixinL7/Refactoring-Summarization/HEAD/data_utils.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixinL7/Refactoring-Summarization/HEAD/demo.py -------------------------------------------------------------------------------- /intro-gap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixinL7/Refactoring-Summarization/HEAD/intro-gap.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixinL7/Refactoring-Summarization/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixinL7/Refactoring-Summarization/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixinL7/Refactoring-Summarization/HEAD/requirements.txt -------------------------------------------------------------------------------- /spec-file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixinL7/Refactoring-Summarization/HEAD/spec-file.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixinL7/Refactoring-Summarization/HEAD/utils.py --------------------------------------------------------------------------------