├── .gitignore ├── README.md ├── data ├── cnndm_test_50.jsonl ├── hotpotqa_dev_wiki_v1_36_samples.json ├── math_deepmind_30_samples.csv └── samsum_test_50.jsonl ├── imgs └── HKUST.jpg ├── main.py ├── requirements.txt └── src ├── dialogue.py ├── hallucination.py ├── machine_translation.py ├── reasoning_qa.py ├── sentiment_analysis.py └── summarization.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLTCHKUST/chatgpt-evaluation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLTCHKUST/chatgpt-evaluation/HEAD/README.md -------------------------------------------------------------------------------- /data/cnndm_test_50.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLTCHKUST/chatgpt-evaluation/HEAD/data/cnndm_test_50.jsonl -------------------------------------------------------------------------------- /data/hotpotqa_dev_wiki_v1_36_samples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLTCHKUST/chatgpt-evaluation/HEAD/data/hotpotqa_dev_wiki_v1_36_samples.json -------------------------------------------------------------------------------- /data/math_deepmind_30_samples.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLTCHKUST/chatgpt-evaluation/HEAD/data/math_deepmind_30_samples.csv -------------------------------------------------------------------------------- /data/samsum_test_50.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLTCHKUST/chatgpt-evaluation/HEAD/data/samsum_test_50.jsonl -------------------------------------------------------------------------------- /imgs/HKUST.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLTCHKUST/chatgpt-evaluation/HEAD/imgs/HKUST.jpg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLTCHKUST/chatgpt-evaluation/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLTCHKUST/chatgpt-evaluation/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/dialogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLTCHKUST/chatgpt-evaluation/HEAD/src/dialogue.py -------------------------------------------------------------------------------- /src/hallucination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLTCHKUST/chatgpt-evaluation/HEAD/src/hallucination.py -------------------------------------------------------------------------------- /src/machine_translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLTCHKUST/chatgpt-evaluation/HEAD/src/machine_translation.py -------------------------------------------------------------------------------- /src/reasoning_qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLTCHKUST/chatgpt-evaluation/HEAD/src/reasoning_qa.py -------------------------------------------------------------------------------- /src/sentiment_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLTCHKUST/chatgpt-evaluation/HEAD/src/sentiment_analysis.py -------------------------------------------------------------------------------- /src/summarization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLTCHKUST/chatgpt-evaluation/HEAD/src/summarization.py --------------------------------------------------------------------------------