├── README.md ├── claim_only ├── bert_classification.py └── flan_xl_zeroshot.py ├── requirements.txt └── with_evidence ├── classifier ├── baseline.py └── preprocess.py └── retrieve ├── data └── data_preprocess.py └── model ├── config ├── hop_predict.yaml ├── relation_predict_top10.yaml ├── relation_predict_top3.yaml └── relation_predict_top5.yaml ├── hop_predict ├── data.py ├── main.py └── model.py └── relation_predict ├── data.py ├── main.py ├── model.py └── relations_for_final.pickle /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiho283/FactKG/HEAD/README.md -------------------------------------------------------------------------------- /claim_only/bert_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiho283/FactKG/HEAD/claim_only/bert_classification.py -------------------------------------------------------------------------------- /claim_only/flan_xl_zeroshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiho283/FactKG/HEAD/claim_only/flan_xl_zeroshot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiho283/FactKG/HEAD/requirements.txt -------------------------------------------------------------------------------- /with_evidence/classifier/baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiho283/FactKG/HEAD/with_evidence/classifier/baseline.py -------------------------------------------------------------------------------- /with_evidence/classifier/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiho283/FactKG/HEAD/with_evidence/classifier/preprocess.py -------------------------------------------------------------------------------- /with_evidence/retrieve/data/data_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiho283/FactKG/HEAD/with_evidence/retrieve/data/data_preprocess.py -------------------------------------------------------------------------------- /with_evidence/retrieve/model/config/hop_predict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiho283/FactKG/HEAD/with_evidence/retrieve/model/config/hop_predict.yaml -------------------------------------------------------------------------------- /with_evidence/retrieve/model/config/relation_predict_top10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiho283/FactKG/HEAD/with_evidence/retrieve/model/config/relation_predict_top10.yaml -------------------------------------------------------------------------------- /with_evidence/retrieve/model/config/relation_predict_top3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiho283/FactKG/HEAD/with_evidence/retrieve/model/config/relation_predict_top3.yaml -------------------------------------------------------------------------------- /with_evidence/retrieve/model/config/relation_predict_top5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiho283/FactKG/HEAD/with_evidence/retrieve/model/config/relation_predict_top5.yaml -------------------------------------------------------------------------------- /with_evidence/retrieve/model/hop_predict/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiho283/FactKG/HEAD/with_evidence/retrieve/model/hop_predict/data.py -------------------------------------------------------------------------------- /with_evidence/retrieve/model/hop_predict/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiho283/FactKG/HEAD/with_evidence/retrieve/model/hop_predict/main.py -------------------------------------------------------------------------------- /with_evidence/retrieve/model/hop_predict/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiho283/FactKG/HEAD/with_evidence/retrieve/model/hop_predict/model.py -------------------------------------------------------------------------------- /with_evidence/retrieve/model/relation_predict/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiho283/FactKG/HEAD/with_evidence/retrieve/model/relation_predict/data.py -------------------------------------------------------------------------------- /with_evidence/retrieve/model/relation_predict/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiho283/FactKG/HEAD/with_evidence/retrieve/model/relation_predict/main.py -------------------------------------------------------------------------------- /with_evidence/retrieve/model/relation_predict/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiho283/FactKG/HEAD/with_evidence/retrieve/model/relation_predict/model.py -------------------------------------------------------------------------------- /with_evidence/retrieve/model/relation_predict/relations_for_final.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiho283/FactKG/HEAD/with_evidence/retrieve/model/relation_predict/relations_for_final.pickle --------------------------------------------------------------------------------