├── README.md ├── data └── synonyms.txt ├── figure4.py ├── figure6.py ├── requirements.txt ├── setup.sh ├── table1.py ├── table2.py ├── table3.py ├── table4.py ├── table5.py └── utils ├── __init__.py ├── chair.py ├── im_consistency.py ├── lm_consistency.py └── misc.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LisaAnne/Hallucination/HEAD/README.md -------------------------------------------------------------------------------- /data/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LisaAnne/Hallucination/HEAD/data/synonyms.txt -------------------------------------------------------------------------------- /figure4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LisaAnne/Hallucination/HEAD/figure4.py -------------------------------------------------------------------------------- /figure6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LisaAnne/Hallucination/HEAD/figure6.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LisaAnne/Hallucination/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LisaAnne/Hallucination/HEAD/setup.sh -------------------------------------------------------------------------------- /table1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LisaAnne/Hallucination/HEAD/table1.py -------------------------------------------------------------------------------- /table2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LisaAnne/Hallucination/HEAD/table2.py -------------------------------------------------------------------------------- /table3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LisaAnne/Hallucination/HEAD/table3.py -------------------------------------------------------------------------------- /table4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LisaAnne/Hallucination/HEAD/table4.py -------------------------------------------------------------------------------- /table5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LisaAnne/Hallucination/HEAD/table5.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | #Blank 2 | -------------------------------------------------------------------------------- /utils/chair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LisaAnne/Hallucination/HEAD/utils/chair.py -------------------------------------------------------------------------------- /utils/im_consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LisaAnne/Hallucination/HEAD/utils/im_consistency.py -------------------------------------------------------------------------------- /utils/lm_consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LisaAnne/Hallucination/HEAD/utils/lm_consistency.py -------------------------------------------------------------------------------- /utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LisaAnne/Hallucination/HEAD/utils/misc.py --------------------------------------------------------------------------------