├── .gitignore ├── INSTALL.md ├── LICENSE ├── README.md ├── STATUS.md ├── models └── model_paper.h5 ├── paper.pdf ├── requirements.txt └── scripts ├── configs ├── csv_to_vecs.json ├── demo.json ├── enrich_results.json ├── from_vecs.json ├── generate_file_list.json ├── jsdoc.json ├── predict.json ├── split.json ├── stats_paper.json └── stats_paper_no_comments.json ├── constants.py ├── csv_to_vecs.py ├── enrich_results.py ├── fileutils.py ├── generate_file_list.py ├── jsdoc_extractor.py ├── jsdoc_to_csv.py ├── predict.py ├── preprocess_raw_data.py ├── runner.py ├── split_file_list.py └── stats.py /.gitignore: -------------------------------------------------------------------------------- 1 | **/node_modules/** 2 | data/* 3 | .idea/ 4 | *.pyc 5 | *.zip 6 | -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/README.md -------------------------------------------------------------------------------- /STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/STATUS.md -------------------------------------------------------------------------------- /models/model_paper.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/models/model_paper.h5 -------------------------------------------------------------------------------- /paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/paper.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/configs/csv_to_vecs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/configs/csv_to_vecs.json -------------------------------------------------------------------------------- /scripts/configs/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/configs/demo.json -------------------------------------------------------------------------------- /scripts/configs/enrich_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/configs/enrich_results.json -------------------------------------------------------------------------------- /scripts/configs/from_vecs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/configs/from_vecs.json -------------------------------------------------------------------------------- /scripts/configs/generate_file_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/configs/generate_file_list.json -------------------------------------------------------------------------------- /scripts/configs/jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/configs/jsdoc.json -------------------------------------------------------------------------------- /scripts/configs/predict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/configs/predict.json -------------------------------------------------------------------------------- /scripts/configs/split.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/configs/split.json -------------------------------------------------------------------------------- /scripts/configs/stats_paper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/configs/stats_paper.json -------------------------------------------------------------------------------- /scripts/configs/stats_paper_no_comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/configs/stats_paper_no_comments.json -------------------------------------------------------------------------------- /scripts/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/constants.py -------------------------------------------------------------------------------- /scripts/csv_to_vecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/csv_to_vecs.py -------------------------------------------------------------------------------- /scripts/enrich_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/enrich_results.py -------------------------------------------------------------------------------- /scripts/fileutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/fileutils.py -------------------------------------------------------------------------------- /scripts/generate_file_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/generate_file_list.py -------------------------------------------------------------------------------- /scripts/jsdoc_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/jsdoc_extractor.py -------------------------------------------------------------------------------- /scripts/jsdoc_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/jsdoc_to_csv.py -------------------------------------------------------------------------------- /scripts/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/predict.py -------------------------------------------------------------------------------- /scripts/preprocess_raw_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/preprocess_raw_data.py -------------------------------------------------------------------------------- /scripts/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/runner.py -------------------------------------------------------------------------------- /scripts/split_file_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/split_file_list.py -------------------------------------------------------------------------------- /scripts/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sola-da/NL2Type/HEAD/scripts/stats.py --------------------------------------------------------------------------------