diff --git a/configs/datasets/CHARM/README.md b/configs/datasets/CHARM/README.md
new file mode 100644
index 000000000..b297f8528
--- /dev/null
+++ b/configs/datasets/CHARM/README.md
@@ -0,0 +1,110 @@
+# CHARM✨ Benchmarking Chinese Commonsense Reasoning of LLMs: From Chinese-Specifics to Reasoning-Memorization Correlations [ACL2024]
+[![arXiv](https://img.shields.io/badge/arXiv-2403.14112-b31b1b.svg)](https://arxiv.org/abs/2403.14112)
+[![license](https://img.shields.io/github/license/InternLM/opencompass.svg)](./LICENSE)
+
+
+📃[Paper](https://arxiv.org/abs/2403.14112)
+🏰[Project Page](https://opendatalab.github.io/CHARM/)
+🏆[Leaderboard](https://opendatalab.github.io/CHARM/leaderboard.html)
+✨[Findings](https://opendatalab.github.io/CHARM/findings.html)
+
+
+
+
+
+## Dataset Description
+
+**CHARM** is the first benchmark for comprehensively and in-depth evaluating the commonsense reasoning ability of large language models (LLMs) in Chinese, which covers both globally known and Chinese-specific commonsense. In addition, the CHARM can evaluate the LLMs' memorization-independent reasoning abilities and analyze the typical errors.
+
+## Comparison of commonsense reasoning benchmarks
+
+
+
+"CN-Lang" indicates the benchmark is presented in Chinese language. "CSR" means the benchmark is designed to focus on CommonSense Reasoning. "CN-specific" indicates the benchmark includes elements that are unique to Chinese culture, language, regional characteristics, history, etc. "Dual-Domain" indicates the benchmark encompasses both Chinese-specific and global domain tasks, with questions presented in the similar style and format. "Rea-Mem" indicates the benchmark includes closely-interconnected reasoning and memorization tasks.
+
+
+## 🛠️ How to Use
+Below are the steps for quickly downloading CHARM and using OpenCompass for evaluation.
+
+### 1. Download CHARM
+```bash
+git clone https://github.com/opendatalab/CHARM ${path_to_CHARM_repo}
+```
+### 2. Run Inference and Evaluation
+```bash
+cd ${path_to_opencompass}
+mkdir -p data
+ln -snf ${path_to_CHARM_repo}/data/CHARM ./data/CHARM
+
+# Infering and evaluating CHARM with hf_llama3_8b_instruct model
+python run.py --models hf_llama3_8b_instruct --datasets charm_gen
+```
+
+## 🖊️ Citation
+```bibtex
+@misc{sun2024benchmarking,
+ title={Benchmarking Chinese Commonsense Reasoning of LLMs: From Chinese-Specifics to Reasoning-Memorization Correlations},
+ author={Jiaxing Sun and Weiquan Huang and Jiang Wu and Chenya Gu and Wei Li and Songyang Zhang and Hang Yan and Conghui He},
+ year={2024},
+ eprint={2403.14112},
+ archivePrefix={arXiv},
+ primaryClass={cs.CL}
+}
+```
diff --git a/configs/datasets/CHARM/README_ZH.md b/configs/datasets/CHARM/README_ZH.md
new file mode 100644
index 000000000..414c65fe3
--- /dev/null
+++ b/configs/datasets/CHARM/README_ZH.md
@@ -0,0 +1,108 @@
+# CHARM✨ Benchmarking Chinese Commonsense Reasoning of LLMs: From Chinese-Specifics to Reasoning-Memorization Correlations [ACL2024]
+[![arXiv](https://img.shields.io/badge/arXiv-2403.14112-b31b1b.svg)](https://arxiv.org/abs/2403.14112)
+[![license](https://img.shields.io/github/license/InternLM/opencompass.svg)](./LICENSE)
+
+
+📃[Paper](https://arxiv.org/abs/2403.14112)
+🏰[Project Page](https://opendatalab.github.io/CHARM/)
+🏆[Leaderboard](https://opendatalab.github.io/CHARM/leaderboard.html)
+✨[Findings](https://opendatalab.github.io/CHARM/findings.html)
+
+
+
+
+## 数据集介绍
+
+**CHARM** 是首个全面深入评估大型语言模型(LLMs)在中文常识推理能力的基准测试,它覆盖了国际普遍认知的常识以及独特的中国文化常识。此外,CHARM 还可以评估 LLMs 独立于记忆的推理能力,并分析其典型错误。
+
+
+## 与其他常识推理评测基准的比较
+
+
+
+
+## 🛠️ 如何使用
+以下是快速下载 CHARM 并在 OpenCompass 上进行评估的步骤。
+
+### 1. 下载 CHARM
+```bash
+git clone https://github.com/opendatalab/CHARM ${path_to_CHARM_repo}
+```
+### 2. 推理和评测
+```bash
+cd ${path_to_opencompass}
+mkdir -p data
+ln -snf ${path_to_CHARM_repo}/data/CHARM ./data/CHARM
+
+# 在CHARM上对模型hf_llama3_8b_instruct做推理和评测
+python run.py --models hf_llama3_8b_instruct --datasets charm_gen
+```
+
+## 🖊️ 引用
+```bibtex
+@misc{sun2024benchmarking,
+ title={Benchmarking Chinese Commonsense Reasoning of LLMs: From Chinese-Specifics to Reasoning-Memorization Correlations},
+ author={Jiaxing Sun and Weiquan Huang and Jiang Wu and Chenya Gu and Wei Li and Songyang Zhang and Hang Yan and Conghui He},
+ year={2024},
+ eprint={2403.14112},
+ archivePrefix={arXiv},
+ primaryClass={cs.CL}
+}
+```
diff --git a/configs/datasets/CHARM/charm_rea_gen.py b/configs/datasets/CHARM/charm_rea_gen.py
new file mode 100644
index 000000000..e98b0d086
--- /dev/null
+++ b/configs/datasets/CHARM/charm_rea_gen.py
@@ -0,0 +1,4 @@
+from mmengine.config import read_base
+
+with read_base():
+ from .charm_rea_gen_f8fca2 import charm_rea_datasets # noqa: F401, F403
diff --git a/configs/datasets/CHARM/charm_rea_gen_f8fca2.py b/configs/datasets/CHARM/charm_rea_gen_f8fca2.py
new file mode 100644
index 000000000..f9af1c6ee
--- /dev/null
+++ b/configs/datasets/CHARM/charm_rea_gen_f8fca2.py
@@ -0,0 +1,78 @@
+import os
+from opencompass.openicl.icl_prompt_template import PromptTemplate
+from opencompass.openicl.icl_retriever import ZeroRetriever
+from opencompass.openicl.icl_inferencer import GenInferencer
+from opencompass.datasets import CharmDataset, charm_rea_postprocess, CharmReaEvaluator
+
+charm_tasks = [
+ 'Chinese_Anachronisms_Judgment',
+ 'Chinese_Movie_and_Music_Recommendation',
+ 'Chinese_Natural_Language_Inference',
+ 'Chinese_Reading_Comprehension',
+ 'Chinese_Sequence_Understanding',
+ 'Chinese_Sport_Understanding',
+ 'Chinese_Time_Understanding',
+ 'Global_Anachronisms_Judgment',
+ 'Global_Movie_and_Music_Recommendation',
+ 'Global_Natural_Language_Inference',
+ 'Global_Reading_Comprehension',
+ 'Global_Sequence_Understanding',
+ 'Global_Sport_Understanding',
+ 'Global_Time_Understanding',
+]
+
+data_dir = 'data/CHARM'
+dataset_path_ZH = f'{data_dir}/reasoning'
+dataset_path_TransEn = f'{data_dir}/reasoning_Translate-EN'
+fewshot_example_path_ZH = os.path.join(os.path.dirname(__file__), 'few-shot-examples')
+fewshot_example_path_TransEn = os.path.join(os.path.dirname(__file__), 'few-shot-examples_Translate-EN')
+
+XLT_template = 'Follow the given examples and answer the question.\n{_hint}\n\n I want you to act as an commonsense reasoning expert for Chinese. \n Request: {{input}}\n'
+Translate_EN_template = 'Follow the given examples and answer the question.\n{_hint}\n\nQ: {{input}}\nA: '
+Other_template = '请按照给定的例子回答问题。\n{_hint}\n\nQ:{{input}}\nA:'
+
+settings = [
+ ('Direct', '', dataset_path_ZH, fewshot_example_path_ZH, Other_template),
+ ('ZH-CoT', '让我们一步一步来思考。', dataset_path_ZH, fewshot_example_path_ZH, Other_template),
+ ('EN-CoT', "Let's think step by step.", dataset_path_ZH, fewshot_example_path_ZH, Other_template),
+ ('XLT', """You should retell the request in English.\nYou should do the answer step by step to choose the right answer.\nYou should step-by-step answer the request.\nYou should tell me the answer in this format 'So the answer is'.""", dataset_path_ZH, fewshot_example_path_ZH, XLT_template),
+ ('Translate-EN', "Let's think step by step.", dataset_path_TransEn, fewshot_example_path_TransEn, Translate_EN_template),
+]
+
+charm_rea_datasets = []
+
+for _cot, _cot_prefix, dataset_path, fewshot_example_path, prompt_template in settings:
+ for _task in charm_tasks:
+ _fewshot_example_file = os.path.join(fewshot_example_path, f'{_task}_{_cot}.txt')
+ with open(_fewshot_example_file, 'r') as f:
+ _hint = f.read()
+
+ charm_rea_reader_cfg = dict(input_columns=['input'], output_column='target')
+
+ charm_rea_infer_cfg = dict(
+ prompt_template=dict(
+ type=PromptTemplate,
+ template=dict(round=[dict(role='HUMAN', prompt=prompt_template.format(_hint=_hint) + _cot_prefix)]),
+ ),
+ retriever=dict(type=ZeroRetriever),
+ inferencer=dict(type=GenInferencer, max_out_len=512),
+ )
+
+ charm_rea_eval_cfg = dict(
+ evaluator=dict(type=CharmReaEvaluator),
+ pred_role='BOT',
+ pred_postprocessor=dict(type=charm_rea_postprocess),
+ dataset_postprocessor=dict(type=charm_rea_postprocess),
+ )
+
+ charm_rea_datasets.append(
+ dict(
+ type=CharmDataset,
+ path=dataset_path,
+ name=_task,
+ abbr='charm-rea-' + _task + '_' + _cot,
+ reader_cfg=charm_rea_reader_cfg,
+ infer_cfg=charm_rea_infer_cfg.copy(),
+ eval_cfg=charm_rea_eval_cfg.copy(),
+ )
+ )
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Anachronisms_Judgment_Direct.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Anachronisms_Judgment_Direct.txt
new file mode 100644
index 000000000..c70e110cd
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Anachronisms_Judgment_Direct.txt
@@ -0,0 +1,22 @@
+识别给定陈述是否包含时代错误。
+
+Q:以下陈述是否包含时代错误,请选择正确选项。一个接受了义务教育、具备基本常识的人会如何选择?
+李白用钢笔写诗。
+选项:
+(A) 是
+(B) 否
+A:(A)
+
+Q:以下陈述是否包含时代错误,请选择正确选项。一个接受了义务教育、具备基本常识的人会如何选择?
+唐朝时期,人们可以在街头买到《红楼梦》。
+选项:
+(A) 是
+(B) 否
+A:(A)
+
+Q:以下陈述是否包含时代错误,请选择正确选项。一个接受了义务教育、具备基本常识的人会如何选择?
+1998年10月1日,人们手举五星红旗,在天安门广场上庆祝国庆
+选项:
+(A) 是
+(B) 否
+A:(B)
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Anachronisms_Judgment_EN-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Anachronisms_Judgment_EN-CoT.txt
new file mode 100644
index 000000000..4de255f6b
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Anachronisms_Judgment_EN-CoT.txt
@@ -0,0 +1,25 @@
+识别给定陈述是否包含时代错误。
+
+Q:以下陈述是否包含时代错误,请选择正确选项。一个接受了义务教育、具备基本常识的人会如何选择?
+李白用钢笔写诗。
+选项:
+(A) 是
+(B) 否
+A:Let's think step by step.
+This statement mentions "Li Bai", a poet from the Tang Dynasty in China. The "pen" mentioned in the statement is a modern device, so it is impossible for Li Bai to write poetry with a pen. This statement contains errors from the times. So the answer is (A).
+
+Q:以下陈述是否包含时代错误,请选择正确选项。一个接受了义务教育、具备基本常识的人会如何选择?
+唐朝时期,人们可以在街头买到《红楼梦》。
+选项:
+(A) 是
+(B) 否
+A:Let's think step by step.
+This statement mentions "Dream of the Red Chamber", which was written by Qing Dynasty writer Cao Xueqin. There was no "Dream of the Red Chamber" during the Tang Dynasty, so this statement contains historical errors. So the answer is (A).
+
+Q:以下陈述是否包含时代错误,请选择正确选项。一个接受了义务教育、具备基本常识的人会如何选择?
+1998年10月1日,人们手举五星红旗,在天安门广场上庆祝国庆
+选项:
+(A) 是
+(B) 否
+A:Let's think step by step.
+This statement mentions that in 1998, New China was established in 1949, and the five-star red flag was designated as the national flag of China. Therefore, October 1, 1998 is National Day, and it is reasonable for people to celebrate National Day at Tiananmen Square, excluding historical errors. So the answer is (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Anachronisms_Judgment_XLT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Anachronisms_Judgment_XLT.txt
new file mode 100644
index 000000000..36948e20a
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Anachronisms_Judgment_XLT.txt
@@ -0,0 +1,63 @@
+识别给定陈述是否包含时代错误。
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:以下陈述是否包含时代错误,请选择正确选项。一个接受了义务教育、具备基本常识的人会如何选择?
+李白用钢笔写诗。
+选项:
+(A) 是
+(B) 否
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request: How would a typical person answer each of the following statement whether contains an anachronism?
+Li Bai writes poetry with a pen.
+Option:
+(A) Yes
+(B) No
+Step-by-step answer:
+1.This statement mentions "Li Bai", a poet from the Tang Dynasty in China.
+2.The pen mentioned in the statement is a modern device.
+3.so it is impossible for Li Bai to write poetry with a pen. This statement contains errors from the times.
+So the answer is (A).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:以下陈述是否包含时代错误,请选择正确选项。一个接受了义务教育、具备基本常识的人会如何选择?
+唐朝时期,人们可以在街头买到《红楼梦》。
+选项:
+(A) 是
+(B) 否
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request: How would a typical person answer each of the following statement whether contains an anachronism?
+During the Tang Dynasty, people could buy "Dream of the Red Chamber" on the streets.
+Option:
+(A) Yes
+(B) No
+Step-by-step answer:
+1.This statement mentions "Dream of the Red Chamber", which was written by Qing Dynasty writer Cao Xueqin
+2.During the Tang Dynasty, there was no "Dream of the Red Chamber", so this statement contains historical errors.
+So the answer is (A).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:以下陈述是否包含时代错误,请选择正确选项。一个接受了义务教育、具备基本常识的人会如何选择?
+1998年10月1日,人们手举五星红旗,在天安门广场上庆祝国庆
+选项:
+(A) 是
+(B) 否
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request: How would a typical person answer each of the following statement whether contains an anachronism?
+On October 1, 1998, people held five-star red flags and celebrated National Day on Tiananmen Square
+Option:
+(A) Yes
+(B) No
+Step-by-step answer:
+1.This statement mentions that in 1998, New China was established in 1949
+2.The Five Star Red Flag was designated as the national flag of China in 1949.
+3.So October 1st, 1998 is National Day, and it is reasonable for people to celebrate National Day at Tiananmen Square, so the statement does not contain any historical errors.
+So the answer is (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Anachronisms_Judgment_ZH-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Anachronisms_Judgment_ZH-CoT.txt
new file mode 100644
index 000000000..4b71c4b32
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Anachronisms_Judgment_ZH-CoT.txt
@@ -0,0 +1,25 @@
+识别给定陈述是否包含时代错误。
+
+Q:以下陈述是否包含时代错误,请选择正确选项。一个接受了义务教育、具备基本常识的人会如何选择?
+李白用钢笔写诗。
+选项:
+(A) 是
+(B) 否
+A:让我们一步一步来思考。
+这个陈述提到了“李白”,他是中国唐朝时期的诗人。而陈述中提到的“钢笔”是现代设备,因此李白不可能使用钢笔写诗,该陈述包含时代错误。所以答案是(A)。
+
+Q:以下陈述是否包含时代错误,请选择正确选项。一个接受了义务教育、具备基本常识的人会如何选择?
+唐朝时期,人们可以在街头买到《红楼梦》。
+选项:
+(A) 是
+(B) 否
+A:让我们一步一步来思考。
+这个陈述提到了《红楼梦》,《红楼梦》是清代作家曹雪芹所写,唐朝时还没有《红楼梦》,因此该陈述包含时代错误。所以答案是(A)。
+
+Q:以下陈述是否包含时代错误,请选择正确选项。一个接受了义务教育、具备基本常识的人会如何选择?
+1998年10月1日,人们手举五星红旗,在天安门广场上庆祝国庆
+选项:
+(A) 是
+(B) 否
+A:让我们一步一步来思考。
+这个陈述提到了1998年,新中国是1949年成立的,五星红旗在1949年被确定为中国国旗,因此1998年10月1日是国庆节,人们在天安门庆祝国庆是合理的,因此陈述不包含时代错误。所以答案是(B)。
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Movie_and_Music_Recommendation_Direct.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Movie_and_Music_Recommendation_Direct.txt
new file mode 100644
index 000000000..4a391abe4
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Movie_and_Music_Recommendation_Direct.txt
@@ -0,0 +1,25 @@
+给根据给定艺术作品清单,找出最类似的。
+
+Q: 和这些电影《疯狂的外星人》、《斗牛》、《杀生》、《疯狂的石头》有共同点的电影是:
+选项:
+(A)《泰囧》
+(B)《少年派》
+(C)《江湖儿女》
+(D)《湄公河行动》
+A: (A)
+
+Q: 和这些电影《红高梁》、《活着》、《大红灯笼高高挂》、《英雄》有共同点的电影是:
+选项:
+(A)《一个都不能少》
+(B)《让子弹飞》
+(C)《阿飞正传》
+(D)《东邪西毒》
+A: (A)
+
+Q: 和这些歌曲《夜曲》、《本草纲目》、《听妈妈的话》、《七里香》有共同点的歌曲是:
+选项:
+(A)《双节棍》
+(B)《年少有为》
+(C)《浮夸》
+(D)《三人游》
+A: (A)
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Movie_and_Music_Recommendation_EN-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Movie_and_Music_Recommendation_EN-CoT.txt
new file mode 100644
index 000000000..272492bdd
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Movie_and_Music_Recommendation_EN-CoT.txt
@@ -0,0 +1,40 @@
+给根据给定艺术作品清单,找出最类似的。
+
+Q: 和这些电影《疯狂的外星人》、《斗牛》、《杀生》、《疯狂的石头》有共同点的电影是:
+选项:
+(A)《泰囧》
+(B)《少年派》
+(C)《江湖儿女》
+(D)《湄公河行动》
+A:Let's think step by step.
+"Crazy Alien" is a comedy science fiction film directed by Ning Hao, written by Liu Cixin and Sun Xiaohang, and starring Huang Bo, Shen Teng, and Xu Zheng. It was released in 2019.
+"Cow" is a dark comedy film directed by Guan Hu, starring Huang Bo and Yan Ni. It was released in 2009.
+"Design of Death" is an absurd and suspenseful comedy film directed by Guan Hu, featuring Huang Bo, Simon Yam, Su Youpeng, and Yu Nan. It was released in 2012.
+"Crazy Stone" is a dark comedy film directed by Ning Hao, featuring Guo Tao, Liu Hua, Lian Jin, Liu Gang, Xu Zheng, and Huang Bo. It was released in 2006.
+These are all famous classic Chinese comedy films featuring Huang Bo. The only film among the options that seems to have something in common with these films is "Lost in Thailand" (directed by Xu Zheng, starring Huang Bo, Xu Zheng, and Wang Baoqiang), a comedy film released in 2012. So the answer is (A).
+
+Q: 和这些电影《红高梁》、《活着》、《大红灯笼高高挂》、《英雄》有共同点的电影是:
+选项:
+(A)《一个都不能少》
+(B)《让子弹飞》
+(C)《阿飞正传》
+(D)《东邪西毒》
+A:Let's think step by step.
+"Red Sorghum," directed by Zhang Yimou and starring Jiang Wen, Gong Li, and Teng Rujun, is a war drama film that was released in China in 1987.
+"To Live," directed by Zhang Yimou and starring Ge You and Gong Li, is a drama film that was released in China in 1994.
+"Raise the Red Lantern," directed by Zhang Yimou and starring Gong Li, He Saifei, Ma Jingwu, Cao Cuifen, Kong Lin, and Jin Shuyuan, is a drama film that was released in China in 1991.
+"Hero," directed by Zhang Yimou and starring Jet Li, Tony Leung, Maggie Cheung, Chen Daoming, Zhang Ziyi, and Donnie Yen, is a wuxia film that was released in China in 2002.
+These are all famous classic Chinese films directed by Zhang Yimou. The only film among the options that seems to have something in common with these films is "Not One Less" (directed by Zhang Yimou, starring Wei Minzhi and Zhang Huike), a drama film released in 1999. So the answer is (A).
+
+Q: 和这些歌曲《夜曲》、《本草纲目》、《听妈妈的话》、《七里香》有共同点的歌曲是:
+选项:
+(A)《双节棍》
+(B)《年少有为》
+(C)《浮夸》
+(D)《三人游》
+A:Let's think step by step.
+"Nocturne" is a song performed by Jay Chou, with lyrics by Vincent Fang, music by Jay Chou, and arrangement by Michael Lin. It is included in Jay Chou's 2005 album "November's Chopin."
+"Herbalist's Manual" is a song performed by Jay Chou, with lyrics by Vincent Fang, music by Jay Chou, and arrangement by Michael Lin. It is included in Jay Chou's 2006 album "Still Fantasy."
+"Listen to Your Mother" is a song performed by Jay Chou, with lyrics and music by Jay Chou, arrangement by Michael Lin and Hong Jingyao. It is included in Jay Chou's 2006 album "Still Fantasy."
+"Common Jasmine Orange" is a song performed by Jay Chou, with lyrics by Vincent Fang, music by Jay Chou, and arrangement by Chung Hsin-min. It is included in Jay Chou's self-titled album "Common Jasmine Orange" released in 2004.
+These are all famous pop songs performed by Jay Chou. The only song among the options that seems to have something in common with these songs is "Nunchucks" (performed by Jay Chou, composed by Jay Chou, lyrics by Vincent Fang, arrangement by Chung Hsin-min, included in Jay Chou's 2001 album "Fantasy"). So the answer is (A).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Movie_and_Music_Recommendation_XLT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Movie_and_Music_Recommendation_XLT.txt
new file mode 100644
index 000000000..0e69a8d03
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Movie_and_Music_Recommendation_XLT.txt
@@ -0,0 +1,76 @@
+给根据给定艺术作品清单,找出最类似的。
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:和这些电影《疯狂的外星人》、《斗牛》、《杀生》、《疯狂的石头》有共同点的电影是:
+选项:
+(A)《泰囧》
+(B)《少年派》
+(C)《江湖儿女》
+(D)《湄公河行动》
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:The movie that has something in common with these movies Crazy Aliens, Bullitt, Killjoys and Crazy Stone is:
+Options.
+(A)Lost in Thailand
+(B)The Young and the Restless
+(C)The Children of the River and the Lake
+(D)The Mekong Operation
+Step-by-step answer:
+1."Crazy Alien" is a comedy science fiction film directed by Ning Hao, written by Liu Cixin and Sun Xiaohang, and starring Huang Bo, Shen Teng, and Xu Zheng. It was released in 2019.
+2."Cow" is a dark comedy film directed by Guan Hu, starring Huang Bo and Yan Ni. It was released in 2009.
+3."Design of Death" is an absurd and suspenseful comedy film directed by Guan Hu, featuring Huang Bo, Simon Yam, Su Youpeng, and Yu Nan. It was released in 2012.
+4."Crazy Stone" is a dark comedy film directed by Ning Hao, featuring Guo Tao, Liu Hua, Lian Jin, Liu Gang, Xu Zheng, and Huang Bo. It was released in 2006.
+5.These are all famous classic Chinese comedy films featuring Huang Bo. The only film among the options that seems to have something in common with these films is "Lost in Thailand" (directed by Xu Zheng, starring Huang Bo, Xu Zheng, and Wang Baoqiang), a comedy film released in 2012.
+So the answer is (A).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:和这些电影《红高梁》、《活着》、《大红灯笼高高挂》、《英雄》有共同点的电影是:
+选项:
+(A)《一个都不能少》
+(B)《让子弹飞》
+(C)《阿飞正传》
+(D)《东邪西毒》
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:The movie that has something in common with these movies 'Red High Beam', 'Alive', 'Big Red Lantern' and 'Hero' is:
+Option.
+(A) 'Not One Less'
+(B)Let the Bullets Fly
+(C)The Legend of Ah Fei
+(D)East is East, West is West
+Step-by-step answer:
+1."Red Sorghum," directed by Zhang Yimou and starring Jiang Wen, Gong Li, and Teng Rujun, is a war drama film that was released in China in 1987.
+2."To Live," directed by Zhang Yimou and starring Ge You and Gong Li, is a drama film that was released in China in 1994.
+3."Raise the Red Lantern," directed by Zhang Yimou and starring Gong Li, He Saifei, Ma Jingwu, Cao Cuifen, Kong Lin, and Jin Shuyuan, is a drama film that was released in China in 1991.
+4."Hero," directed by Zhang Yimou and starring Jet Li, Tony Leung, Maggie Cheung, Chen Daoming, Zhang Ziyi, and Donnie Yen, is a wuxia film that was released in China in 2002.
+5.These are all famous classic Chinese films directed by Zhang Yimou. The only film among the options that seems to have something in common with these films is "Not One Less" (directed by Zhang Yimou, starring Wei Minzhi and Zhang Huike), a drama film released in 1999.
+So the answer is (A).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:和这些歌曲《夜曲》、《本草纲目》、《听妈妈的话》、《七里香》有共同点的歌曲是:
+选项:
+(A)《双节棍》
+(B)《年少有为》
+(C)《浮夸》
+(D)《三人游》
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:The songs that have something in common with these songs "Nocturne", "Materia Medica", "Listen to Your Mother" and "Seven Miles" are:
+Option.
+(A) 'Nunchaku'
+(B) 'The Young and the Restless'
+(C) 'Pomp and Circumstance'
+(D) "Three's a Crowd
+Step-by-step answer:
+1."Nocturne" is a song performed by Jay Chou, with lyrics by Vincent Fang, music by Jay Chou, and arrangement by Michael Lin. It is included in Jay Chou's 2005 album "November's Chopin."
+2."Herbalist's Manual" is a song performed by Jay Chou, with lyrics by Vincent Fang, music by Jay Chou, and arrangement by Michael Lin. It is included in Jay Chou's 2006 album "Still Fantasy."
+3."Listen to Your Mother" is a song performed by Jay Chou, with lyrics and music by Jay Chou, arrangement by Michael Lin and Hong Jingyao. It is included in Jay Chou's 2006 album "Still Fantasy."
+4."Common Jasmine Orange" is a song performed by Jay Chou, with lyrics by Vincent Fang, music by Jay Chou, and arrangement by Chung Hsin-min. It is included in Jay Chou's self-titled album "Common Jasmine Orange" released in 2004.
+5.These are all famous pop songs performed by Jay Chou. The only song among the options that seems to have something in common with these songs is "Nunchucks" (performed by Jay Chou, composed by Jay Chou, lyrics by Vincent Fang, arrangement by Chung Hsin-min, included in Jay Chou's 2001 album "Fantasy").
+So the answer is (A).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Movie_and_Music_Recommendation_ZH-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Movie_and_Music_Recommendation_ZH-CoT.txt
new file mode 100644
index 000000000..f11dd14a5
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Movie_and_Music_Recommendation_ZH-CoT.txt
@@ -0,0 +1,40 @@
+给根据给定艺术作品清单,找出最类似的。
+
+Q: 和这些电影《疯狂的外星人》、《斗牛》、《杀生》、《疯狂的石头》有共同点的电影是:
+选项:
+(A)《泰囧》
+(B)《少年派》
+(C)《江湖儿女》
+(D)《湄公河行动》
+A: 让我们一步一步来思考。
+《疯狂的外星人》是由宁浩执导,刘慈欣、孙小杭编剧,黄渤、沈腾、徐峥等主演的喜剧科幻片,2019年上映。
+《斗牛》是由管虎执导,黄渤、闫妮等主演的黑色喜剧电影,2009年上映。
+《杀生》是由管虎执导,黄渤、任达华、苏有朋、余男等联袂主演的荒诞悬疑喜剧片,2012年上映。
+《疯狂的石头》是宁浩执导,郭涛、刘桦、连晋、刘刚、徐峥、黄渤等出演的黑色喜剧片,2006年上映。
+这些都是有黄渤出演的著名经典中国喜剧电影,在所有选项中,唯一与这些电影有相同点的电影似乎是《泰囧》(徐峥执导,黄渤、徐峥、王宝强主演的喜剧片,2012年上映)。所以答案是(A)。
+
+Q: 和这些电影《红高梁》、《活着》、《大红灯笼高高挂》、《英雄》有共同点的电影是:
+选项:
+(A)《一个都不能少》
+(B)《让子弹飞》
+(C)《阿飞正传》
+(D)《东邪西毒》
+A: 让我们一步一步来思考。
+《红高粱》由张艺谋执导,姜文、巩俐、滕汝骏等主演的战争文艺片,1987年在中国上映。
+《活着》是由张艺谋执导,葛优、巩俐等主演的剧情片,1994年在中国上映。
+《大红灯笼高高挂》是由张艺谋执导,巩俐、何赛飞、马精武、曹翠芬、孔琳、金淑媛等主演的剧情片,1991年在中国上映。
+《英雄》是张艺谋执导,由李连杰、梁朝伟、张曼玉、陈道明、章子怡及甄子丹主演的的武侠电影,2002年在中国上映。
+这些都是由张艺谋执导的著名经典中国电影,在所有选项中,唯一与这些电影有相同点的电影似乎是《一个都不能少》(张艺谋执导,魏敏芝、张慧科主演的剧情电影,1999年上映)。所以答案是(A)。
+
+Q: 和这些歌曲《夜曲》、《本草纲目》、《听妈妈的话》、《七里香》有共同点的歌曲是:
+选项:
+(A)《双节棍》
+(B)《年少有为》
+(C)《浮夸》
+(D)《三人游》
+A: 让我们一步一步来思考。
+《夜曲》是周杰伦演唱的一首歌曲,由方文山作词,周杰伦作曲,林迈可编曲,收录在周杰伦2005年发行的专辑《11月的萧邦》中
+《本草纲目》是周杰伦演唱的一首歌曲,由方文山作词,周杰伦作曲,林迈可编曲,收录在周杰伦2006年发行的专辑《依然范特西》中。
+《听妈妈的话》是周杰伦演唱的一首歌曲,由周杰伦作词、作曲,林迈可、洪敬尧编曲,收录在周杰伦2006年发行的专辑《依然范特西》中。
+《七里香》是周杰伦演唱的一首歌曲,由方文山作词,周杰伦谱曲,钟兴民编曲,收录在周杰伦2004年发行的同名专辑《七里香》中。
+这些都是由周杰伦演唱的中国著名流行音乐歌曲,在所有选项中,唯一与这些歌曲有相同点的歌曲似乎是《双节棍》(由周杰伦演唱,由周杰伦作曲,方文山作词,钟兴民编曲,收录于周杰伦2001年发行的专辑《范特西》中)。所以答案是(A)。
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Natural_Language_Inference_Direct.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Natural_Language_Inference_Direct.txt
new file mode 100644
index 000000000..83aa4179a
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Natural_Language_Inference_Direct.txt
@@ -0,0 +1,25 @@
+请根据题目中两句话的关系选择正确答案。
+
+Q:语句一:小明刚刚去什刹海滑冰
+语句二:北京现在是冬季
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+A:(A)
+
+Q:语句一:下周,一股强降水将影响整个河北省
+语句二:下周,上海天气很好
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+A:(C)
+
+Q:语句一:昨天,小明在山上看落日,感叹道:"夕阳无限好,只是近黄昏"
+语句二:昨天下雨,小明没有出门
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+A:(B)
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Natural_Language_Inference_EN-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Natural_Language_Inference_EN-CoT.txt
new file mode 100644
index 000000000..3ce816cc9
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Natural_Language_Inference_EN-CoT.txt
@@ -0,0 +1,28 @@
+请根据题目中两句话的关系选择正确答案。
+
+Q:语句一:小明刚刚去什刹海滑冰
+语句二:北京现在是冬季
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+A: Let's think step by step.
+The first sentence mentions that Xiaoming goes to Shichahai for ice skating, which usually takes place in winter. Moreover, Shichahai is located in Beijing, which contains the message from the second sentence that it is currently winter. So the answer is (A).
+
+Q:语句一:下周,一股强降水将影响整个河北省
+语句二:下周,上海天气很好
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+A: Let's think step by step.
+These two sentences describe the weather conditions in two geographical locations, one in Hebei Province and the other in Shanghai. Hebei Province and Shanghai are geographically far apart, so the weather conditions in these two places may not necessarily be directly related. So, the relationship between these two sentences is irrelevant. So the answer is (C).
+
+Q:语句一:昨天,小明在山上看落日,感叹道:"夕阳无限好,只是近黄昏"
+语句二:昨天下雨,小明没有出门
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+A: Let's think step by step.
+The first sentence states that Xiaoming saw the sunset on the mountain yesterday, while the second sentence states that it rained yesterday and Xiaoming did not go out. There is a contradiction between these two sentences, because if Xiaoming had not gone out, he could not have seen the sunset on the mountain. So, the relationship between these two sentences is contradictory. So the answer is (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Natural_Language_Inference_XLT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Natural_Language_Inference_XLT.txt
new file mode 100644
index 000000000..ccf8c4de6
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Natural_Language_Inference_XLT.txt
@@ -0,0 +1,67 @@
+请根据题目中两句话的关系选择正确答案。
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:语句一:小明刚刚去什刹海滑冰
+语句二:北京现在是冬季
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Sentence 1: Xiaoming has just gone ice-skating in Shichahai
+Sentence 2: It's winter in Beijing
+What is the relationship between these two statements?
+(A) Implicit
+(B) Contradictory
+(C) Irrelevant
+Step-by-step answer:
+1.The first sentence mentions that Xiaoming goes to Shichahai for ice skating, which usually takes place in winter.
+2.Moreover, Shichahai is located in Beijing, which contains the message from the second sentence that it is currently winter.
+So the answer is (A).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:语句一:下周,一股强降水将影响整个河北省
+语句二:下周,上海天气很好
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Sentence 1:Next week, a heavy rainfall will affect the whole Hebei province
+Sentence 2: Next week, the weather in Shanghai will be fine.
+What is the relationship between these two statements?
+(A) Implied
+(B) Contradictory
+(C) Irrelevant
+Step-by-step answer:
+1.These two sentences describe the weather conditions in two geographical locations, one in Hebei Province and the other in Shanghai.
+2.Hebei Province and Shanghai are geographically far apart, so the weather conditions in these two places may not necessarily be directly related. So, the relationship between these two sentences is irrelevant.
+So the answer is (C).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:语句一:昨天,小明在山上看落日,感叹道:"夕阳无限好,只是近黄昏"
+语句二:昨天下雨,小明没有出门
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Sentence 1: Yesterday, Xiao Ming watched the sunset on a hill and exclaimed, "The sunset is infinite, but it's just near dusk"
+Sentence 2: Yesterday it rained and Ming didn't go out
+What is the relationship between these two statements?
+(A) implied
+(B) contradictory
+(C) Irrelevant
+Step-by-step answer:
+1.The first sentence states that Xiaoming saw the sunset on the mountain yesterday, while the second sentence states that it rained yesterday and Xiaoming did not go out.
+2.There is a contradiction between these two sentences, because if Xiaoming had not gone out, he could not have seen the sunset on the mountain. So, the relationship between these two sentences is contradictory.
+So the answer is (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Natural_Language_Inference_ZH-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Natural_Language_Inference_ZH-CoT.txt
new file mode 100644
index 000000000..de8247801
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Natural_Language_Inference_ZH-CoT.txt
@@ -0,0 +1,28 @@
+请根据题目中两句话的关系选择正确答案。
+
+Q:语句一:小明刚刚去什刹海滑冰
+语句二:北京现在是冬季
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+A:让我们一步一步来思考。
+第一句话提到小明去什刹海滑冰,而滑冰通常在冬季进行,而且什刹海位于北京,这蕴含了第二句话的信息,即当前是冬季。所以答案是(A)。
+
+Q:语句一:下周,一股强降水将影响整个河北省
+语句二:下周,上海天气很好
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+A:让我们一步一步来思考。
+这两句话描述的是两个地理位置的天气情况,一个是河北省,一个是上海。河北省和上海在地理位置上相距较远,因此,这两个地方的天气情况并不一定有直接关联。所以,这两句话之间的关系是无关的。所以答案是(C)。
+
+Q:语句一:昨天,小明在山上看落日,感叹道:"夕阳无限好,只是近黄昏"
+语句二:昨天下雨,小明没有出门
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+A:让我们一步一步来思考。
+第一句话说小明昨天在山上看到了落日,而第二句话说昨天下雨,小明没有出门。这两句话之间存在矛盾,因为如果小明没有出门,那么他就不可能在山上看到落日。所以,这两句话之间的关系是矛盾的。所以答案是(B)。
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Reading_Comprehension_Direct.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Reading_Comprehension_Direct.txt
new file mode 100644
index 000000000..5f8d53817
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Reading_Comprehension_Direct.txt
@@ -0,0 +1,23 @@
+请理解题目含义并选择正确答案。
+
+Q:有些广东人不爱吃辣椒.因此,有些南方人不爱吃辣椒. 以下哪项能保证上述论证的成立?
+(A) 有些广东人爱吃辣椒
+(B) 爱吃辣椒的有些是南方人
+(C) 所有的广东人都是南方人
+(D) 有些广东人不爱吃辣椒也不爱吃甜食
+A:(C)
+
+
+Q:唐卡是极富藏族文化特色的一种绘画形式,自吐蕃王朝兴起至今已有1300多年的历史,是雪域高原的文化瑰宝.它的题材除宗教外,还有历史和民俗内容,故又被称为了解西藏的“百科全书”.所以,想要了解西藏的历史,除了正襟危坐地阅读严谨但略显呆板的史书外,你还可以选择一种惬意和愉悦的方式--欣赏唐卡,与众多的古人对话,想象曾经的历史事件,体味藏族人丰富的精神世界,了解独特的藏族民俗,这是一个让历史变得立体可感的过程. 这段文字意在说明:
+(A) 唐卡可以给大家提供一种惬意轻松的了解西藏的方式
+(B) 唐卡中记录了独特的藏族民俗和曾经的历史事件
+(C) 唐卡是了解西藏文化和历史的“百科全书”式的绘画形式
+(D) 唐卡是极富藏族文化特色且历史悠久的一种绘画形式
+A:(A)
+
+Q:“知人论世”作为一种文学批评的原则和方法,最早由战国时期的思想家孟子提出.孟子认为,后人要交结古人,只是读其诗书是不行的,还必须了解他们的为人行事以及他们的生活的时代,这样,才能读懂古人的诗书,才能和古人心契神交,成为知音. 对这段话的理解,不正确的是?
+(A) 人的心灵是可以互通和共鸣的
+(B) “知人论世”作为一种文学评论发沿用至今并显现了强大的生命力
+(C) “知人论世”可以帮助后人交结古人和古人成为知音
+(D) 了解古人和他所处的时代,有助于理解他的作品
+A: (B)
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Reading_Comprehension_EN-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Reading_Comprehension_EN-CoT.txt
new file mode 100644
index 000000000..b4a2e9ad4
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Reading_Comprehension_EN-CoT.txt
@@ -0,0 +1,25 @@
+请理解题目含义并选择正确答案。
+
+Q:有些广东人不爱吃辣椒.因此,有些南方人不爱吃辣椒. 以下哪项能保证上述论证的成立?
+(A) 有些广东人爱吃辣椒
+(B) 爱吃辣椒的有些是南方人
+(C) 所有的广东人都是南方人
+(D) 有些广东人不爱吃辣椒也不爱吃甜食
+A: Let's think step by step.
+In this argument, we infer from "some Cantonese people do not like to eat chili peppers" that "some southerners do not like to eat chili peppers". The establishment of this reasoning depends on the relationship between Cantonese and Southerners. In order for this reasoning to be valid, we need to ensure that at least a portion of Cantonese people are from the south. Therefore, option (C) "All Cantonese are southerners" can ensure the validity of this argument. So the answer is (C).
+
+Q:唐卡是极富藏族文化特色的一种绘画形式,自吐蕃王朝兴起至今已有1300多年的历史,是雪域高原的文化瑰宝.它的题材除宗教外,还有历史和民俗内容,故又被称为了解西藏的“百科全书”.所以,想要了解西藏的历史,除了正襟危坐地阅读严谨但略显呆板的史书外,你还可以选择一种惬意和愉悦的方式--欣赏唐卡,与众多的古人对话,想象曾经的历史事件,体味藏族人丰富的精神世界,了解独特的藏族民俗,这是一个让历史变得立体可感的过程. 这段文字意在说明:
+(A) 唐卡可以给大家提供一种惬意轻松的了解西藏的方式
+(B) 唐卡中记录了独特的藏族民俗和曾经的历史事件
+(C) 唐卡是了解西藏文化和历史的“百科全书”式的绘画形式
+(D) 唐卡是极富藏族文化特色且历史悠久的一种绘画形式
+A: Let's think step by step.
+It is explicitly mentioned in the article that besides reading rigorous but somewhat rigid historical books, appreciating thangkas is a comfortable and enjoyable way for people to converse with numerous ancient people, imagine past historical events, appreciate the rich spiritual world of Tibetans, and understand unique Tibetan customs. So the main purpose of this passage is (A) "Thangka can provide a comfortable and easy way for everyone to understand Xizang". So the answer is (A).
+
+Q:“知人论世”作为一种文学批评的原则和方法,最早由战国时期的思想家孟子提出.孟子认为,后人要交结古人,只是读其诗书是不行的,还必须了解他们的为人行事以及他们的生活的时代,这样,才能读懂古人的诗书,才能和古人心契神交,成为知音. 对这段话的理解,不正确的是?
+(A) 人的心灵是可以互通和共鸣的
+(B) “知人论世”作为一种文学评论发沿用至今并显现了强大的生命力
+(C) “知人论世”可以帮助后人交结古人和古人成为知音
+(D) 了解古人和他所处的时代,有助于理解他的作品
+A: Let's think step by step.
+From this passage, we cannot see (B) that "understanding people and discussing the world" as a literary criticism has been used to this day and has shown strong vitality. Although "knowing people and discussing the world" was indeed proposed by the philosopher Mencius during the Warring States period as a principle and method of literary criticism, this passage does not mention that "knowing people and discussing the world" is still in use today, or that it has shown strong vitality. Therefore, option (B) is an incorrect understanding. So the answer is (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Reading_Comprehension_XLT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Reading_Comprehension_XLT.txt
new file mode 100644
index 000000000..34351fccb
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Reading_Comprehension_XLT.txt
@@ -0,0 +1,62 @@
+请理解题目含义并选择正确答案。
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:有些广东人不爱吃辣椒.因此,有些南方人不爱吃辣椒. 以下哪项能保证上述论证的成立?
+(A) 有些广东人爱吃辣椒
+(B) 爱吃辣椒的有些是南方人
+(C) 所有的广东人都是南方人
+(D) 有些广东人不爱吃辣椒也不爱吃甜食
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request: Some Cantonese people don't like chili peppers. Therefore, some southerners don't like chili peppers. Which of the following ensures the validity of the above argument?
+(A) Some Cantonese people love chili peppers
+(B) Some Southerners love chili peppers.
+(C) All Cantonese are Southerners.
+(D) Some Cantonese people do not love chili or sweets.
+Step-by-step answer:
+1.In this argument, we infer from "some Cantonese people do not like to eat chili peppers" that "some southerners do not like to eat chili peppers".
+2.The establishment of this reasoning depends on the relationship between Cantonese and Southerners. In order for this reasoning to be valid, we need to ensure that at least a portion of Cantonese people are from the south. Therefore, option (C) "All Cantonese are southerners" can ensure the validity of this argument.
+So the answer is (C).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:唐卡是极富藏族文化特色的一种绘画形式,自吐蕃王朝兴起至今已有1300多年的历史,是雪域高原的文化瑰宝.它的题材除宗教外,还有历史和民俗内容,故又被称为了解西藏的“百科全书”.所以,想要了解西藏的历史,除了正襟危坐地阅读严谨但略显呆板的史书外,你还可以选择一种惬意和愉悦的方式--欣赏唐卡,与众多的古人对话,想象曾经的历史事件,体味藏族人丰富的精神世界,了解独特的藏族民俗,这是一个让历史变得立体可感的过程. 这段文字意在说明:
+(A) 唐卡可以给大家提供一种惬意轻松的了解西藏的方式
+(B) 唐卡中记录了独特的藏族民俗和曾经的历史事件
+(C) 唐卡是了解西藏文化和历史的“百科全书”式的绘画形式
+(D) 唐卡是极富藏族文化特色且历史悠久的一种绘画形式
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request: Thangka is a form of painting rich in Tibetan cultural characteristics, which has a history of more than 1300 years since the rise of the Tubo Dynasty and is a cultural treasure of the Snowy Plateau. It is a cultural treasure of the Snowy Plateau. Its subject matter is not only religious, but also historical and folklore content, so it is also known as the "encyclopedia" to understand Tibet. Therefore, if you want to understand the history of Tibet, in addition to sitting down and reading the strict but slightly dull history books, you can also choose a pleasant and enjoyable way - enjoying the thangka, conversing with many ancient people, imagining the historical events, savoring the rich spiritual world of the Tibetans, and understanding the unique folklore of the Tibetans, which is a process to make the history become a three-dimensional and palpable. This is a process of making history three-dimensional and palpable.
+(A) Thangkas can provide a cozy and relaxing way to learn about Tibet.
+(B) The thangkas are a unique record of Tibetan folklore and historical events.
+(C) The thangka is an "encyclopedic" form of painting for understanding Tibetan culture and history.
+(D) The thangka is a form of painting that is rich in Tibetan cultural characteristics and has a long history.
+Step-by-step answer:
+1.It is explicitly mentioned in the article that besides reading rigorous but somewhat rigid historical books, appreciating thangkas is a comfortable and enjoyable way for people to converse with numerous ancient people, imagine past historical events, appreciate the rich spiritual world of Tibetans, and understand unique Tibetan customs.
+2.So the main purpose of this passage is (A) "Thangka can provide a comfortable and easy way for everyone to understand Xizang".
+So the answer is (A).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:“知人论世”作为一种文学批评的原则和方法,最早由战国时期的思想家孟子提出.孟子认为,后人要交结古人,只是读其诗书是不行的,还必须了解他们的为人行事以及他们的生活的时代,这样,才能读懂古人的诗书,才能和古人心契神交,成为知音. 对这段话的理解,不正确的是?
+(A) 人的心灵是可以互通和共鸣的
+(B) “知人论世”作为一种文学评论发沿用至今并显现了强大的生命力
+(C) “知人论世”可以帮助后人交结古人和古人成为知音
+(D) 了解古人和他所处的时代,有助于理解他的作品
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request: As a principle and method of literary criticism, the concept of "knowing people and discussing the world" was first proposed by Mencius, a thinker of the Warring States period. According to Mencius, in order to make friends with the ancients, it is not enough just to read their poems and books, but also to understand their behavior and the times in which they lived, so as to read and understand their poems and books, and to make friends with them and become their soulmates. What is the incorrect understanding of this passage?
+(A) People's hearts can communicate and resonate with each other.
+(B) "Knowing people and discussing the world" has been used as a kind of literary criticism and has shown a strong vitality.
+(C) "Knowing people and discussing the world" can help the descendants to make friends with the ancients and the ancients to become their soulmates.
+(D) Knowing about the ancients and their times helps to understand their works.
+Step-by-step answer:
+1.From this passage, we cannot see (B) that "understanding people and discussing the world" as a literary criticism has been used to this day and has shown strong vitality.
+2.Although "knowing people and discussing the world" was indeed proposed by the philosopher Mencius during the Warring States period as a principle and method of literary criticism, this passage does not mention that "knowing people and discussing the world" is still in use today, or that it has shown strong vitality.
+3.Therefore, option (B) is an incorrect understanding.
+So the answer is (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Reading_Comprehension_ZH-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Reading_Comprehension_ZH-CoT.txt
new file mode 100644
index 000000000..0bc47b688
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Reading_Comprehension_ZH-CoT.txt
@@ -0,0 +1,26 @@
+请理解题目含义并选择正确答案。
+
+Q:有些广东人不爱吃辣椒.因此,有些南方人不爱吃辣椒. 以下哪项能保证上述论证的成立?
+(A) 有些广东人爱吃辣椒
+(B) 爱吃辣椒的有些是南方人
+(C) 所有的广东人都是南方人
+(D) 有些广东人不爱吃辣椒也不爱吃甜食
+A:让我们一步一步来思考。
+在这个论证中,我们从"有些广东人不爱吃辣椒"推断出"有些南方人不爱吃辣椒"。这个推理的成立依赖于广东人和南方人的关系。为了使这个推理有效,我们需要保证至少一部分广东人是南方人。因此,选项 (C) "所有的广东人都是南方人" 是能保证这个论证成立的。所以答案是(C)。
+
+
+Q:唐卡是极富藏族文化特色的一种绘画形式,自吐蕃王朝兴起至今已有1300多年的历史,是雪域高原的文化瑰宝.它的题材除宗教外,还有历史和民俗内容,故又被称为了解西藏的“百科全书”.所以,想要了解西藏的历史,除了正襟危坐地阅读严谨但略显呆板的史书外,你还可以选择一种惬意和愉悦的方式--欣赏唐卡,与众多的古人对话,想象曾经的历史事件,体味藏族人丰富的精神世界,了解独特的藏族民俗,这是一个让历史变得立体可感的过程. 这段文字意在说明:
+(A) 唐卡可以给大家提供一种惬意轻松的了解西藏的方式
+(B) 唐卡中记录了独特的藏族民俗和曾经的历史事件
+(C) 唐卡是了解西藏文化和历史的“百科全书”式的绘画形式
+(D) 唐卡是极富藏族文化特色且历史悠久的一种绘画形式
+A:让我们一步一步来思考。
+文中明确提到了,除了阅读严谨但略显呆板的史书外,欣赏唐卡是一种惬意和愉悦的方式,可以让人与众多的古人对话,想象曾经的历史事件,体味藏族人丰富的精神世界,了解独特的藏族民俗。所以这段文字的主要意图是 (A) "唐卡可以给大家提供一种惬意轻松的了解西藏的方式"。所以答案是(A)。
+
+Q:“知人论世”作为一种文学批评的原则和方法,最早由战国时期的思想家孟子提出.孟子认为,后人要交结古人,只是读其诗书是不行的,还必须了解他们的为人行事以及他们的生活的时代,这样,才能读懂古人的诗书,才能和古人心契神交,成为知音. 对这段话的理解,不正确的是?
+(A) 人的心灵是可以互通和共鸣的
+(B) “知人论世”作为一种文学评论发沿用至今并显现了强大的生命力
+(C) “知人论世”可以帮助后人交结古人和古人成为知音
+(D) 了解古人和他所处的时代,有助于理解他的作品
+A:让我们一步一步来思考。
+从这段话中,我们看不到(B)“知人论世”作为一种文学批评已经沿用至今,并显示出强大的生命力。虽然“知人论世”确实是战国时期哲学家孟子提出的一种文学批评的原则和方法,但这段话并没有提到“知人论世”在今天仍在使用,也没有提到它已经显示出强大的生命力。因此,选项(B)是一种错误的理解。所以答案是(B)。
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Sequence_Understanding_Direct.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Sequence_Understanding_Direct.txt
new file mode 100644
index 000000000..df407ea69
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Sequence_Understanding_Direct.txt
@@ -0,0 +1,22 @@
+根据上下文选择正确答案
+
+Q: 下列人物按时间先后顺序排序正确的是?选项:
+(A) 秦始皇、诸葛亮、刘邦、白居易
+(B) 诸葛亮、秦始皇、刘邦、白居易
+(C) 秦始皇、刘邦、诸葛亮、白居易
+(D) 白居易、诸葛亮、刘邦、秦始皇
+A:(C)
+
+Q:下列描述年龄的词语按照年龄从小到大的顺序排序正确的是?选项:
+(A) 不惑、而立、知天命、花甲
+(B) 而立、不惑、知天命、花甲
+(C) 花甲、知天命、而立、不惑
+(D) 而立、花甲、不惑、知天命
+A:(B)
+
+Q:下列制作老式棒棒糖的步骤正确的是?选项:
+(A) 准备材料、将糖浆倒入模具、制作糖浆、冷却定型
+(B) 准备材料、制作糖浆、将糖浆倒入模具、冷却定型
+(C) 准备材料、将糖浆倒入模具、冷却定型、制作糖浆
+(D) 准备材料、冷却定型、制作糖浆、将糖浆倒入模具
+A:(B)
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Sequence_Understanding_EN-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Sequence_Understanding_EN-CoT.txt
new file mode 100644
index 000000000..6494630a8
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Sequence_Understanding_EN-CoT.txt
@@ -0,0 +1,25 @@
+根据上下文选择正确答案
+
+Q: 下列人物按时间先后顺序排序正确的是?选项:
+(A) 秦始皇、诸葛亮、刘邦、白居易
+(B) 诸葛亮、秦始皇、刘邦、白居易
+(C) 秦始皇、刘邦、诸葛亮、白居易
+(D) 白居易、诸葛亮、刘邦、秦始皇
+A: Let's think step by step.
+There are four characters mentioned in the options, among which Qin Shi Huang is from the Qin Dynasty, Zhuge Liang is from the Three Kingdoms period, Liu Bang is from the Han Dynasty period, and Bai Juyi is from the Tang Dynasty period. They are sorted in chronological order as Qin Dynasty, Han Dynasty, Three Kingdoms period, and Tang Dynasty. Therefore, the characters are sorted in chronological order as Qin Shi Huang, Liu Bang, Zhuge Liang, and Bai Juyi. So the answer is (C).
+
+Q:下列描述年龄的词语按照年龄从小到大的顺序排序正确的是?选项:
+(A) 不惑、而立、知天命、花甲
+(B) 而立、不惑、知天命、花甲
+(C) 花甲、知天命、而立、不惑
+(D) 而立、花甲、不惑、知天命
+A: Let's think step by step.
+The options mention four words that describe age, among which "Erli" refers to 30 years old, "Bu Fu" refers to 40 years old, "Zhi Tian Ming" refers to 50 years old, and "Hua Jia" refers to 60 years old. Therefore, in order of age, they are Erli, Bu Fu, Zhi Tian Ming, and Hua Jia. So the answer is (B).
+
+Q:下列制作老式棒棒糖的步骤正确的是?选项:
+(A) 准备材料、将糖浆倒入模具、制作糖浆、冷却定型
+(B) 准备材料、制作糖浆、将糖浆倒入模具、冷却定型
+(C) 准备材料、将糖浆倒入模具、冷却定型、制作糖浆
+(D) 准备材料、冷却定型、制作糖浆、将糖浆倒入模具
+A: Let's think step by step.
+The title mentions the steps to make old-fashioned lollipops, and the options include "preparing materials", "pouring syrup into the mold", "making syrup", and "cooling and shaping". According to the steps to make old-fashioned lollipops, the first step should be to prepare the materials, then make syrup, pour syrup into the mold, and finally cool and shape. So the answer is (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Sequence_Understanding_XLT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Sequence_Understanding_XLT.txt
new file mode 100644
index 000000000..11ed9c319
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Sequence_Understanding_XLT.txt
@@ -0,0 +1,62 @@
+根据上下文选择正确答案
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request: 下列人物按时间先后顺序排序正确的是?选项:
+(A) 秦始皇、诸葛亮、刘邦、白居易
+(B) 诸葛亮、秦始皇、刘邦、白居易
+(C) 秦始皇、刘邦、诸葛亮、白居易
+(D) 白居易、诸葛亮、刘邦、秦始皇
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request: The following characters are correctly ordered in chronological order? Options:
+(A) Qin Shi Huang, Zhuge Liang, Liu Bang, Bai Juyi
+(B) Zhuge Liang, Qin Shi Huang, Liu Bang, Bai Ju Yi
+(C) Qin Shi Huang, Liu Bang, Zhu Geliang, Bai Juyi
+(D) Bai Juyi, Zhu Geliang, Liu Bang, Qin Shi Huang
+Step-by-step answer:
+1.There are four characters mentioned in the options, among which Qin Shi Huang is from the Qin Dynasty, Zhuge Liang is from the Three Kingdoms period, Liu Bang is from the Han Dynasty period, and Bai Juyi is from the Tang Dynasty period.
+2.They are sorted in chronological order as Qin Dynasty, Han Dynasty, Three Kingdoms period, and Tang Dynasty.
+3.Therefore, the characters are sorted in chronological order as Qin Shi Huang, Liu Bang, Zhuge Liang, and Bai Juyi.
+So the answer is (C).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request: 下列描述年龄的词语按照年龄从小到大的顺序排序正确的是?选项:
+(A) 不惑、而立、知天命、花甲
+(B) 而立、不惑、知天命、花甲
+(C) 花甲、知天命、而立、不惑
+(D) 而立、花甲、不惑、知天命
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request: The following words describing age are correctly ordered from youngest to oldest age? Options:
+(A) Unconfused, Established, Knowledge of life, Flowering age
+(B) To stand, not to be confused, to know one's destiny, and to be in the prime of life.
+(C) Being in the prime of life, knowing one's destiny, being in the prime of life, not being confused.
+(D) to stand up, to grow old, to be unperturbed, to know one's destiny
+Step-by-step answer:
+1.The options mention four words that describe age, among which "Erli" refers to 30 years old, "Bu Fu" refers to 40 years old, "Zhi Tian Ming" refers to 50 years old, and "Hua Jia" refers to 60 years old.
+2.Therefore, in order of age, they are Erli, Bu Fu, Zhi Tian Ming, and Hua Jia.
+So the answer is (B).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request: 下列制作老式棒棒糖的步骤正确的是?选项:
+(A) 准备材料、将糖浆倒入模具、制作糖浆、冷却定型
+(B) 准备材料、制作糖浆、将糖浆倒入模具、冷却定型
+(C) 准备材料、将糖浆倒入模具、冷却定型、制作糖浆
+(D) 准备材料、冷却定型、制作糖浆、将糖浆倒入模具
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request: Which of the following steps is correct for making old-fashioned lollipops? Options:
+(A) Preparing the ingredients, pouring the syrup into the molds, making the syrup, cooling to set the shape
+(B) Prepare ingredients, make syrup, pour syrup into molds, cool to set
+(C) Prepare ingredients, pour syrup into mold, cool and set, make syrup
+(D) Prepare ingredients, cool and set, make syrup, pour syrup into molds
+Step-by-step answer:
+1.The title mentions the steps to make old-fashioned lollipops, and the options include "preparing materials", "pouring syrup into the mold", "making syrup", and "cooling and shaping".
+2.According to the steps to make old-fashioned lollipops, the first step should be to prepare the materials, then make syrup, pour syrup into the mold, and finally cool and shape.
+So the answer is (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Sequence_Understanding_ZH-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Sequence_Understanding_ZH-CoT.txt
new file mode 100644
index 000000000..c30ac670d
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Sequence_Understanding_ZH-CoT.txt
@@ -0,0 +1,25 @@
+根据上下文选择正确答案
+
+Q: 下列人物按时间先后顺序排序正确的是?选项:
+(A) 秦始皇、诸葛亮、刘邦、白居易
+(B) 诸葛亮、秦始皇、刘邦、白居易
+(C) 秦始皇、刘邦、诸葛亮、白居易
+(D) 白居易、诸葛亮、刘邦、秦始皇
+A:让我们一步一步来思考。
+选项中提到了4个人物,其中秦始皇是秦朝的,诸葛亮是三国时期的,刘邦是汉朝时期的,白居易是唐朝时期的,按照时间先后排序为秦朝,汉朝,三国时期,唐朝,因此人物先后排序为秦始皇、刘邦、诸葛亮、白居易。所以答案是(C)。
+
+Q:下列描述年龄的词语按照年龄从小到大的顺序排序正确的是?选项:
+(A) 不惑、而立、知天命、花甲
+(B) 而立、不惑、知天命、花甲
+(C) 花甲、知天命、而立、不惑
+(D) 而立、花甲、不惑、知天命
+A:让我们一步一步来思考。
+选项中提到了四个描述年龄的词语,其中“而立”指30岁,“不惑”指40岁,“知天命”指50岁,“花甲”指60岁,因此按年龄从小到大排序是而立、不惑、知天命、花甲。所以答案是(B)。
+
+Q:下列制作老式棒棒糖的步骤正确的是?选项:
+(A) 准备材料、将糖浆倒入模具、制作糖浆、冷却定型
+(B) 准备材料、制作糖浆、将糖浆倒入模具、冷却定型
+(C) 准备材料、将糖浆倒入模具、冷却定型、制作糖浆
+(D) 准备材料、冷却定型、制作糖浆、将糖浆倒入模具
+A:让我们一步一步来思考。
+题目中提到了制作老式棒棒糖的步骤,选项中包含“准备材料”、“将糖浆倒入模具”、“制作糖浆”、“冷却定型”四个步骤,按照制作老式棒棒糖的步骤第一步应该是准备材料,然后需要制作糖浆,再把糖浆倒入模具,最后冷却定型。所以答案是(B)。
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Sport_Understanding_Direct.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Sport_Understanding_Direct.txt
new file mode 100644
index 000000000..344eb9f2a
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Sport_Understanding_Direct.txt
@@ -0,0 +1,19 @@
+判断一句人为构造的关于体育的句子是否可信。
+
+Q: 下面的句子可信吗? "运动员张培萌一传稳定如山,使得进攻端占据着主动"
+选项:
+(A)可信
+(B)不可信
+A: (B)
+
+Q: 下面的句子可信吗? "运动员郭艾伦打入任意球"
+选项:
+(A)可信
+(B)不可信
+A: (B)
+
+Q: 下面的句子可信吗? "运动员范智毅射门得分"
+选项:
+(A)可信
+(B)不可信
+A: (A)
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Sport_Understanding_EN-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Sport_Understanding_EN-CoT.txt
new file mode 100644
index 000000000..2f8f3611e
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Sport_Understanding_EN-CoT.txt
@@ -0,0 +1,22 @@
+判断一句人为构造的关于体育的句子是否可信。
+
+Q: 下面的句子可信吗? "运动员张培萌一传稳定如山,使得进攻端占据着主动"
+选项:
+(A)可信
+(B)不可信
+A: Let's think step by step.
+Zhang Peimeng is an athlete from China who competes in track and field. First pass is a term in volleyball. Since he is not a volleyball player, he won't be involved in the passing part of a volleyball game. So the answer is (B).
+
+Q: 下面的句子可信吗? "运动员郭艾伦打入任意球"
+选项:
+(A)可信
+(B)不可信
+A: Let's think step by step.
+Guo Ailun is a Chinese basketball player, and "free kick" is a term used in soccer. Since he is not a soccer player, he won't be involved in the free kick phase of a soccer match. Therefore, So the answer is (B).
+
+Q: 下面的句子可信吗? "运动员范智毅射门得分"
+选项:
+(A)可信
+(B)不可信
+A: Let's think step by step.
+Fan Zhiyi is a Chinese football player, and "scoring a goal" is a term used in football. Since he is a professional football player, he is very likely to score a goal. So the answer is (A).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Sport_Understanding_XLT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Sport_Understanding_XLT.txt
new file mode 100644
index 000000000..efae47722
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Sport_Understanding_XLT.txt
@@ -0,0 +1,56 @@
+判断一句人为构造的关于体育的句子是否可信。
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:下面的句子可信吗? "运动员张培萌一传稳定如山,使得进攻端占据着主动"
+选项:
+(A)可信
+(B)不可信
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Is the following sentence credible? "Zhang Peimeng's pass was as stable as a mountain, allowing the attacking end to take the initiative."
+Option:
+(A) Credible
+(B) Not credible
+Step-by-step answer:
+1.Zhang Peimeng is an athlete from China who competes in track and field. First pass is a term in volleyball.
+2.Since he is not a volleyball player, he won't be involved in the passing part of a volleyball game. So the answer is (B).
+So the answer is (B).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:下面的句子可信吗? "运动员郭艾伦打入任意球"
+选项:
+(A)可信
+(B)不可信
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Is the following sentence credible? "Guo Ailun scored a free kick"
+Option:
+(A) Credible
+(B) Not credible
+Step-by-step answer:
+1.Guo Ailun is a Chinese basketball player, and "free kick" is a term used in soccer.
+2.Since he is not a soccer player, he won't be involved in the free kick phase of a soccer match.
+So the answer is (B).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:下面的句子可信吗? "运动员范智毅射门得分"
+选项:
+(A)可信
+(B)不可信
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Is the following sentence credible? "Fan Zhiyi's shooting score"
+Option:
+(A) Credible
+(B) Not credible
+Step-by-step answer:
+1.Fan Zhiyi is a Chinese football player, and "scoring a goal" is a term used in football.
+2.Since he is a professional football player, he is very likely to score a goal.
+So the answer is (A).
+
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Sport_Understanding_ZH-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Sport_Understanding_ZH-CoT.txt
new file mode 100644
index 000000000..7db7b53f8
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Sport_Understanding_ZH-CoT.txt
@@ -0,0 +1,22 @@
+判断一句人为构造的关于体育的句子是否可信。
+
+Q: 下面的句子可信吗? "运动员张培萌一传稳定如山,使得进攻端占据着主动"
+选项:
+(A)可信
+(B)不可信
+A: 让我们一步一步来思考。
+张培萌是一位中国的田径运动员,一传是排球运动术语。由于他并不是排球运动员,因此他不会参与到排球比赛中的传球环节。所以答案是(B)。
+
+Q: 下面的句子可信吗? "运动员郭艾伦打入任意球"
+选项:
+(A)可信
+(B)不可信
+A: 让我们一步一步来思考。
+郭艾伦是一位中国的篮球运动员,任意球是足球运动术语。由于他并不是足球运动员,因此他不会在参与到足球比赛的任意球环节,所以答案是(B)。
+
+Q: 下面的句子可信吗? "运动员范智毅射门得分"
+选项:
+(A)可信
+(B)不可信
+A: 让我们一步一步来思考。
+范智毅是一位中国的足球运动员,射门得分是足球运动术语。由于他是一名专业的足球运动员,因此他很可能射门得分,所以答案是(A)。
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Time_Understanding_Direct.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Time_Understanding_Direct.txt
new file mode 100644
index 000000000..cf058dc8b
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Time_Understanding_Direct.txt
@@ -0,0 +1,25 @@
+根据上下文选择正确答案。
+
+Q:小华在丙申年出生,他的哥哥比他大6岁,所以他的哥哥出生在哪一年?
+选项:
+(A) 己卯年
+(B) 庚寅年
+(C) 丙申年
+(D) 乙丑年
+A:(B)
+
+Q:如果今年是甲辰年,李华的爷爷说:“今年是我的知天命之年”,请问赵婷爷爷的属相是什么?
+选项:
+(A) 狗
+(B) 虎
+(C) 鸡
+(D) 鼠
+A:(B)
+
+Q:小李在亥时三刻开始制作画画,他知道他需要10个小时才能完成。那么他最早在什么时辰可以完成?
+选项:
+ (A) 辰时
+ (B) 卯时
+ (C) 午时
+ (D) 未时
+A:(A)
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Time_Understanding_EN-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Time_Understanding_EN-CoT.txt
new file mode 100644
index 000000000..9f5efa0df
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Time_Understanding_EN-CoT.txt
@@ -0,0 +1,28 @@
+根据上下文选择正确答案。
+
+Q:小华在丙申年出生,他的哥哥比他大6岁,所以他的哥哥出生在哪一年?
+选项:
+(A) 己卯年
+(B) 庚寅年
+(C) 丙申年
+(D) 乙丑年
+A:Let's think step by step.
+Xiaohua was born in the year of Bingshen, and his older brother was 6 years older than him. The sixth year before Bingshen was in the year of Gengyin, so his older brother was born in the year of Gengyin. So the answer is (B).
+
+Q:如果今年是甲辰年,李华的爷爷说:“今年是我的知天命之年”,请问赵婷爷爷的属相是什么?
+选项:
+(A) 狗
+(B) 虎
+(C) 鸡
+(D) 鼠
+A:Let's think step by step.
+The title mentions that Grandpa was born in the year of Jiayin, which is the year of the Tiger. In ancient China, the term "year of knowing the destiny of heaven" referred to the age of 50. Therefore, Grandpa is 50 years old this year, which is the year of Jiachen. According to the Chinese Tiangan Dizhi chronology, the year of Grandpa's birth is the year of Jiayin, which is the year of the Tiger. Therefore, Grandpa belongs to the Year of the Tiger. So the answer is (B).
+
+Q:小李在亥时三刻开始制作画画,他知道他需要10个小时才能完成。那么他最早在什么时辰可以完成?
+选项:
+ (A) 辰时
+ (B) 卯时
+ (C) 午时
+ (D) 未时
+A:Let's think step by step.
+According to the ancient Chinese timing method, the third quarter of the pig hour refers to approximately 21:45 minutes, and 10 hours later it is 7:45 minutes, which is the Dragon Hour . So the answer is (A).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Time_Understanding_XLT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Time_Understanding_XLT.txt
new file mode 100644
index 000000000..b3fa56357
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Time_Understanding_XLT.txt
@@ -0,0 +1,68 @@
+根据上下文选择正确答案。
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:小华在丙申年出生,他的哥哥比他大6岁,所以他的哥哥出生在哪一年?
+选项:
+(A) 己卯年
+(B) 庚寅年
+(C) 丙申年
+(D) 乙丑年
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request: Xiaohua was born in the year of Bingshen, and his brother is 6 years older than him, so in which year was his brother born?
+Option:
+(A) Ji Mao Year
+(B) Gengyin Year
+(C) Bingshen Year
+(D) Yi Chou Year
+Step-by-step answer:
+1.Xiaohua was born in the year of Bingshen, and his older brother is 6 years older than him. According to the Chinese Tian Gan Di Zhi chronology, the sixth year before Bingshen is the year of Gengyin.
+2.So his brother was born in the year of Gengyin.
+So the answer is (B).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:如果今年是甲辰年,李华的爷爷说:“今年是我的知天命之年”,请问赵婷爷爷的属相是什么?
+选项:
+(A) 狗
+(B) 虎
+(C) 鸡
+(D) 鼠
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request: If this year is the year of Jiachen and Li Hua's grandfather says, "This year is my year of knowing fate." What is the zodiac sign of Grandpa Zhao Ting?
+Option:
+(A) Dogs
+(B) Tiger
+(C) Chicken
+(D) Mouse
+Step-by-step answer:
+1.The title mentions that Grandpa is the "year of knowing destiny", and in ancient China, "year of knowing destiny" referred to the age of 50, so Grandpa is 50 years old this year.
+2.This year is the year of Jiachen. According to the Chinese Tiangan and Dizhi chronology, the year my grandfather was born is the year of Jiayin.
+3.The year of Jiayin is the year of the tiger, so my grandfather belongs to the tiger.
+So the answer is (B).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:小李在亥时三刻开始制作画画,他知道他需要10个小时才能完成。那么他最早在什么时辰可以完成?
+选项:
+ (A) 辰时
+ (B) 卯时
+ (C) 午时
+ (D) 未时
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Xiao Li started making paintings at the third quarter of the pig hour, and he knew it would take him 10 hours to complete. So when can he finish it at the earliest?
+Option:
+(A) Dragon Hour
+(B) Rabbit Hour
+(C) Horse Hour
+(D) Sheep Hour
+Step-by-step answer:
+1.According to the ancient Chinese timing method, the third quarter of the hour of Hai refers to approximately 21:45,
+2.Ten hours later, it will be 7:45, which is Dragon Hour .
+So the answer is (A).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Chinese_Time_Understanding_ZH-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Chinese_Time_Understanding_ZH-CoT.txt
new file mode 100644
index 000000000..f24019d15
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Chinese_Time_Understanding_ZH-CoT.txt
@@ -0,0 +1,28 @@
+根据上下文选择正确答案。
+
+Q:小华在丙申年出生,他的哥哥比他大6岁,所以他的哥哥出生在哪一年?
+选项:
+(A) 己卯年
+(B) 庚寅年
+(C) 丙申年
+(D) 乙丑年
+A:让我们一步一步来思考。
+小华在丙申年出生,他的哥哥比他大6岁,按照中国天干地支纪年法,丙申年之前的第六年是庚寅年,所以他的哥哥在庚寅年出生。所以答案是(B)。
+
+Q:如果今年是甲辰年,李华的爷爷说:“今年是我的知天命之年”,请问赵婷爷爷的属相是什么?
+选项:
+(A) 狗
+(B) 虎
+(C) 鸡
+(D) 鼠
+A:让我们一步一步来思考。
+题目中提到爷爷是“知天命之年”,中国古代“知天命之年”代指50岁,所以爷爷今年50岁,今年是甲辰年,根据中国天干地支纪年法推算,爷爷出生那年是甲寅年,甲寅年是虎年,所以爷爷属虎。所以答案是(B)。
+
+Q:小李在亥时三刻开始制作画画,他知道他需要10个小时才能完成。那么他最早在什么时辰可以完成?
+选项:
+ (A) 辰时
+ (B) 卯时
+ (C) 午时
+ (D) 未时
+A:让我们一步一步来思考。
+按照中国古代计时方法,亥时三刻大约指的是21点45分,10个小时后是7点45分,是辰时。所以答案是(A)。
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Anachronisms_Judgment_Direct.txt b/configs/datasets/CHARM/few-shot-examples/Global_Anachronisms_Judgment_Direct.txt
new file mode 100644
index 000000000..f388d3858
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Anachronisms_Judgment_Direct.txt
@@ -0,0 +1,22 @@
+识别给定陈述是否包含时代错误。
+
+Q:以下陈述是否包含时代错误,一个接受了义务教育、具备基本常识的人会如何回答?
+在硫磺岛登陆作战期间,拉尔夫大声对着收音机说话。
+选项:
+(A) 是
+(B) 否
+A:(B)
+
+Q:以下陈述是否包含时代错误,一个接受了义务教育、具备基本常识的人会如何回答?
+在硫磺岛登陆作战期间,拉尔夫大声对着他的 iPhone 说话。
+选项:
+(A) 是
+(B) 否
+A:(A)
+
+Q:以下陈述是否包含时代错误,一个接受了义务教育、具备基本常识的人会如何回答?
+没有什么比萨莉·海明斯边看 HBO 的《真探》边织毛衣更令人满足。
+选项:
+(A) 是
+(B) 否
+A:(A)
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Anachronisms_Judgment_EN-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Anachronisms_Judgment_EN-CoT.txt
new file mode 100644
index 000000000..791bd9099
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Anachronisms_Judgment_EN-CoT.txt
@@ -0,0 +1,25 @@
+识别给定陈述是否包含时代错误。
+
+Q:以下陈述是否包含时代错误,一个接受了义务教育、具备基本常识的人会如何回答?
+在硫磺岛登陆作战期间,拉尔夫大声对着收音机说话。
+选项:
+(A) 是
+(B) 否
+A: Let's think step by step.
+The statement mentions “the Allied bombardment of the beaches of Iwo Jima,” which refers to a historical event during World War II. The use of radios for communication among military personnel during that time is accurate and appropriate. So the answer is (B).
+
+Q:以下陈述是否包含时代错误,一个接受了义务教育、具备基本常识的人会如何回答?
+在硫磺岛登陆作战期间,拉尔夫大声对着他的 iPhone 说话。
+选项:
+(A) 是
+(B) 否
+A: Let's think step by step.
+The statement mentions “the Allied bombardment of the beaches of Iwo Jima,” which refers to a historical event during World War II. However, the mention of Ralph speaking loudly into his iPhone introduces an anachronism.The iPhone is a modern-day smartphone that was not available during the time of the Allied bombardment of Iwo Jima in 1945. So the answer is (A).
+
+Q:以下陈述是否包含时代错误,一个接受了义务教育、具备基本常识的人会如何回答?
+没有什么比萨莉·海明斯边看 HBO 的《真探》边织毛衣更令人满足。
+选项:
+(A) 是
+(B) 否
+A: Let's think step by step.
+The statement mentions Sally Hemings, who was an enslaved woman in the United States during the late 18th and early 19th centuries. However, the mention of watching HBO’s True Detective, which is a modern television show, introduces an anachronism. During Sally Hemings’ time, television did not exist, and the specific mention of watching a specific show like True Detective is clearly out of place for that historical period. So the answer is (A).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Anachronisms_Judgment_XLT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Anachronisms_Judgment_XLT.txt
new file mode 100644
index 000000000..bd4e898b2
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Anachronisms_Judgment_XLT.txt
@@ -0,0 +1,61 @@
+识别给定陈述是否包含时代错误。
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:以下陈述是否包含时代错误,一个接受了义务教育、具备基本常识的人会如何回答?
+在硫磺岛登陆作战期间,拉尔夫大声对着收音机说话。
+选项:
+(A) 是
+(B) 否
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:How would a person with compulsory education and basic common sense answer whether the following statement contains an anachronism?
+During the landing operations on Iwo Jima, Ralph spoke loudly into the radio.
+Options:
+(A) Yes
+(B) No
+Step-by-step answer:
+1.The statement mentions “the Allied bombardment of the beaches of Iwo Jima,” which refers to a historical event during World War II.
+2.The use of radios for communication among military personnel during that time is accurate and appropriate.
+So the answer is (B).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:以下陈述是否包含时代错误,一个接受了义务教育、具备基本常识的人会如何回答?
+在硫磺岛登陆作战期间,拉尔夫大声对着他的 iPhone 说话。
+选项:
+(A) 是
+(B) 否
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:How would a person with compulsory education and basic common sense answer whether the following statement contains an anachronism?
+During the landing operations on Iwo Jima, Ralph spoke loudly into the radio.
+Options:
+(A) Yes
+(B) No
+Step-by-step answer:
+1.The statement mentions “the Allied bombardment of the beaches of Iwo Jima,” which refers to a historical event during World War II.
+2.However, the mention of Ralph speaking loudly into his iPhone introduces an anachronism.The iPhone is a modern-day smartphone that was not available during the time of the Allied bombardment of Iwo Jima in 1945.
+So the answer is (A).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:以下陈述是否包含时代错误,一个接受了义务教育、具备基本常识的人会如何回答?
+没有什么比萨莉·海明斯边看 HBO 的《真探》边织毛衣更令人满足。
+选项:
+(A) 是
+(B) 否
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:How would a person with compulsory education and basic common sense answer whether the following statement contains an anachronism?
+During the landing operations on Iwo Jima, Ralph spoke loudly into the radio.
+Options:
+(A) Yes
+(B) No
+Step-by-step answer:
+1.The statement mentions Sally Hemings, who was an enslaved woman in the United States during the late 18th and early 19th centuries.
+2.However, the mention of watching HBO’s True Detective, which is a modern television show, introduces an anachronism. During Sally Hemings’ time, television did not exist, and the specific mention of watching a specific show like True Detective is clearly out of place for that historical period.
+So the answer is (A).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Anachronisms_Judgment_ZH-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Anachronisms_Judgment_ZH-CoT.txt
new file mode 100644
index 000000000..2401b0ea0
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Anachronisms_Judgment_ZH-CoT.txt
@@ -0,0 +1,25 @@
+识别给定陈述是否包含时代错误。
+
+Q:以下陈述是否包含时代错误,一个接受了义务教育、具备基本常识的人会如何回答?
+在硫磺岛登陆作战期间,拉尔夫大声对着收音机说话。
+选项:
+(A) 是
+(B) 否
+A:让我们一步一步来思考。
+这个陈述提到了“硫磺岛登陆作战期间”,这是指二战期间的一个历史事件。在当时,军事人员之间使用收音机进行通信是准确和恰当的。所以答案是(B)。
+
+Q:以下陈述是否包含时代错误,一个接受了义务教育、具备基本常识的人会如何回答?
+在硫磺岛登陆作战期间,拉尔夫大声对着他的 iPhone 说话。
+选项:
+(A) 是
+(B) 否
+A:让我们一步一步来思考。
+这个陈述提到了“硫磺岛登陆作战期间”,这是指二战期间的一个历史事件。然而,提到拉尔夫大声对着他的 iPhone 说话引入了一个时代错误。iPhone 是现代的智能手机,在 1945 年硫磺岛登陆作战期间是不存在的。所以答案是(A)。
+
+Q:以下陈述是否包含时代错误,一个接受了义务教育、具备基本常识的人会如何回答?
+没有什么比萨莉·海明斯边看 HBO 的《真探》边织毛衣更令人满足。
+选项:
+(A) 是
+(B) 否
+A:让我们一步一步来思考。
+这个陈述提到了萨莉·海明斯,她是 18 世纪末到 19 世纪初美国的一个被奴役的女性。然而,提到她边看 HBO 的《真探》边织毛衣引入了一个时代错误。在萨莉·海明斯所处的时代,电视是不存在的,而且具体提到观看像《真探》这样的特定节目在那个历史时期显然是不合适的。所以答案是(A)。
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Movie_and_Music_Recommendation_Direct.txt b/configs/datasets/CHARM/few-shot-examples/Global_Movie_and_Music_Recommendation_Direct.txt
new file mode 100644
index 000000000..a38c8e335
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Movie_and_Music_Recommendation_Direct.txt
@@ -0,0 +1,25 @@
+给根据给定艺术作品清单,找出最类似的。
+
+Q: 寻找一部与《勇敢的心》、《风月俏佳人》、《辛德勒的名单》、《阿波罗13号》类似的电影:
+选项:
+(A)《星际迷航》
+(B)《我盛大的希腊婚礼2》
+(C)《圣诞老人2》
+(D)《与狼共舞》
+A: (D)
+
+Q: 寻找一部与《勇敢的心》、《风月俏佳人》、《阿波罗13号》、《与狼共舞》类似的电影:
+选项:
+(A)《蝙蝠侠:突袭阿卡姆》
+(B)《肖申克的救赎》
+(C)《玩具总动员》
+(D)《狮子王》
+A: (B)
+
+Q: 寻找一部与《惊世骇案》、《勇敢的心》、《低俗小说》、《辛德勒的名单》类似的电影:
+选项:
+(A)《卡里加里博士的小屋》
+(B)《肖申克的救赎》
+(C)《蜘蛛侠2》
+(D)《出租车》
+A: (B)
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Movie_and_Music_Recommendation_EN-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Movie_and_Music_Recommendation_EN-CoT.txt
new file mode 100644
index 000000000..b842e86b0
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Movie_and_Music_Recommendation_EN-CoT.txt
@@ -0,0 +1,40 @@
+给根据给定艺术作品清单,找出最类似的。
+
+Q: 寻找一部与《勇敢的心》、《风月俏佳人》、《辛德勒的名单》、《阿波罗13号》类似的电影:
+选项:
+(A)《星际迷航》
+(B)《我盛大的希腊婚礼2》
+(C)《圣诞老人2》
+(D)《与狼共舞》
+A: Let's think step by step.
+Star Trek is a science fiction film that, despite its depth and complexity, has significant differences in theme and style from the four aforementioned films.
+My Grand Greek Wedding 2 is a light hearted comedy film that differs significantly from the themes and styles of the four aforementioned films.
+Santa Claus 2 is a family movie with a Christmas theme, which differs significantly from the themes and styles of the four aforementioned movies.
+"Dancing with Wolves" is a film that depicts the relationship between Native Americans and the American West during its pioneering period
+The theme and style of "Dancing with Wolves" are consistent with the four films mentioned above. This movie, like Brave Heart, Pretty Woman, Schindler's List, and Apollo 13, is a historical film with depth and seriousness. So the answer is (D).
+
+Q: 寻找一部与《勇敢的心》、《风月俏佳人》、《阿波罗13号》、《与狼共舞》类似的电影:
+选项:
+(A)《蝙蝠侠:突袭阿卡姆》
+(B)《肖申克的救赎》
+(C)《玩具总动员》
+(D)《狮子王》
+A: Let's think step by step.
+Batman: Assault on Arkham is a superhero film with significant differences in theme and style from the four aforementioned films.
+Shawshank Redemption is a 1994 American drama film directed by Frank Delabond and starring Tim Robbins and Morgan Freeman. It is a film about hope and perseverance.
+Toy Story is an animated film, although it may have some themes of adventure and friendship, its themes and style differ significantly from the four aforementioned films.
+Although Lion King is a classic animated film that covers themes of courage and growth, its themes and style differ significantly from the four aforementioned films.
+The Shawshank Redemption, like Brave Heart, Pretty Woman, Apollo 13, and Dancing with Wolves, is a film with depth and seriousness, and its theme and style are similar to the other three films. So the answer is (B).
+
+Q: 寻找一部与《惊世骇案》、《勇敢的心》、《低俗小说》、《辛德勒的名单》类似的电影:
+选项:
+(A)《卡里加里博士的小屋》
+(B)《肖申克的救赎》
+(C)《蜘蛛侠2》
+(D)《出租车》
+A: Let's think step by step.
+"Dr. Caligary's Cabin" is a 1920 German expressionist silent film directed by Robert Wiener. This film is often considered a milestone in German expressionist cinema and one of the earliest horror films.
+Shawshank Redemption is a 1994 American drama film directed by Frank Delabond and starring Tim Robbins and Morgan Freeman. It is a film about hope and perseverance.
+Spider Man 2 is a 2004 American superhero film directed by Sam Remy and starring Toby Maguire. It is the second installment of the Spider Man trilogy.
+"Taxi" is a 2004 American comedy action film directed by Tim Storey, starring Jimmy Flanders and Quentin Latafa. This movie is an American remake of a 1998 French film.
+And the titles of "The Amazing Case", "Brave Heart", "Pulp Fiction", and "Schindler's List" are all very profound, plot rich, and have strong human themes in movies. They have all won high praise from audiences and critics for their excellent scripts, brilliant performances, and profound themes. The Shawshank Redemption tells the story of a wrongly accused banker who maintains hope in prison and ultimately escapes. The plot of this movie is deeply ingrained in people's hearts, with a profound portrayal of human nature, and there are many similarities with the movie in the title. So the answer is (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Movie_and_Music_Recommendation_XLT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Movie_and_Music_Recommendation_XLT.txt
new file mode 100644
index 000000000..cdcaf0e8b
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Movie_and_Music_Recommendation_XLT.txt
@@ -0,0 +1,76 @@
+给根据给定艺术作品清单,找出最类似的。
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:寻找一部与《勇敢的心》、《风月俏佳人》、《辛德勒的名单》、《阿波罗13号》类似的电影:
+选项:
+(A)《星际迷航》
+(B)《我盛大的希腊婚礼2》
+(C)《圣诞老人2》
+(D)《与狼共舞》
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Find a movie similar to Braveheart, Pretty Woman, Schindler's List, Apollo 13:
+Options:
+(A) Star Trek
+(B) My Big Fat Greek Wedding 2
+(C) The Santa Clause 2
+(D) Dances with Wolves
+Step-by-step answer:
+1.Star Trek is a science fiction film that, despite its depth and complexity, has significant differences in theme and style from the four aforementioned films.
+2.My Big Fat Greek Wedding 2 is a light hearted comedy film that differs significantly from the themes and styles of the four aforementioned films.
+3.Santa Claus 2 is a family movie with a Christmas theme, which differs significantly from the themes and styles of the four aforementioned movies.
+4.Dancing with Wolves is a film that depicts the relationship between Native Americans and the American West during its pioneering period
+5.The theme and style of "Dancing with Wolves" are consistent with the four films mentioned above. This movie, like Brave Heart, Pretty Woman, Schindler's List, and Apollo 13, is a historical film with depth and seriousness.
+So the answer is (D).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:寻找一部与《勇敢的心》、《风月俏佳人》、《阿波罗13号》、《与狼共舞》类似的电影:
+选项:
+(A)《蝙蝠侠:突袭阿卡姆》
+(B)《肖申克的救赎》
+(C)《玩具总动员》
+(D)《狮子王》
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Find a movie similar to Braveheart, Pretty Woman, Apollo 13, Dances with Wolves:
+Options:
+(A) Batman Assault on Arkham
+(B) The Shawshank Redemption
+(C) Toy Story
+(D) The Lion King
+Step-by-step answer:
+1.Batman: Assault on Arkham is a superhero film with significant differences in theme and style from the four aforementioned films.
+2.Shawshank Redemption is a 1994 American drama film directed by Frank Delabond and starring Tim Robbins and Morgan Freeman. It is a film about hope and perseverance.
+3.Toy Story is an animated film, although it may have some themes of adventure and friendship, its themes and style differ significantly from the four aforementioned films.
+4.Although Lion King is a classic animated film that covers themes of courage and growth, its themes and style differ significantly from the four aforementioned films.
+5.The Shawshank Redemption, like Brave Heart, Pretty Woman, Apollo 13, and Dancing with Wolves, is a film with depth and seriousness, and its theme and style are similar to the other three films.
+So the answer is (B).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:寻找一部与《惊世骇案》、《勇敢的心》、《低俗小说》、《辛德勒的名单》类似的电影:
+选项:
+(A)《卡里加里博士的小屋》
+(B)《肖申克的救赎》
+(C)《蜘蛛侠2》
+(D)《出租车》
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Find a movie similar to The Usual Suspects, Braveheart, Pulp Fiction, Schindler's List:
+Options:
+(A) The Cabinet of Dr Caligari
+(B) The Shawshank Redemption
+(C) Spider-Man 2
+(D) Taxi
+Step-by-step answer:
+1."Dr. Caligary's Cabin" is a 1920 German expressionist silent film directed by Robert Wiener. This film is often considered a milestone in German expressionist cinema and one of the earliest horror films.
+2.Shawshank Redemption is a 1994 American drama film directed by Frank Delabond and starring Tim Robbins and Morgan Freeman. It is a film about hope and perseverance.
+3.Spider Man 2 is a 2004 American superhero film directed by Sam Remy and starring Toby Maguire. It is the second installment of the Spider Man trilogy.
+4."Taxi" is a 2004 American comedy action film directed by Tim Storey, starring Jimmy Flanders and Quentin Latafa. This movie is an American remake of a 1998 French film.
+5.And the titles of "The Amazing Case", "Brave Heart", "Pulp Fiction", and "Schindler's List" are all very profound, plot rich, and have strong human themes in movies. They have all won high praise from audiences and critics for their excellent scripts, brilliant performances, and profound themes. The Shawshank Redemption tells the story of a wrongly accused banker who maintains hope in prison and ultimately escapes. The plot of this movie is deeply ingrained in people's hearts, with a profound portrayal of human nature, and there are many similarities with the movie in the title.
+So the answer is (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Movie_and_Music_Recommendation_ZH-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Movie_and_Music_Recommendation_ZH-CoT.txt
new file mode 100644
index 000000000..70abbad24
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Movie_and_Music_Recommendation_ZH-CoT.txt
@@ -0,0 +1,40 @@
+给根据给定艺术作品清单,找出最类似的。
+
+Q: 寻找一部与《勇敢的心》、《风月俏佳人》、《辛德勒的名单》、《阿波罗13号》类似的电影:
+选项:
+(A)《星际迷航》
+(B)《我盛大的希腊婚礼2》
+(C)《圣诞老人2》
+(D)《与狼共舞》
+A: 让我们一步一步来思考。
+《星际迷航》是一部科幻电影,虽然它具有深度和复杂性,但它的主题和风格与上述四部电影有较大的差异。
+《我盛大的希腊婚礼2》是一部轻松的喜剧电影,与上述四部电影的主题和风格有较大的差异。
+《圣诞老人2》是一部圣诞主题的家庭电影,与上述四部电影的主题和风格也有较大的差异。
+《与狼共舞》是一部描绘美国西部开拓时期与原住民关系的电影.
+其中《与狼共舞》的主题和风格与上述四部电影相符。这部电影与《勇敢的心》、《风月俏佳人》、《辛德勒的名单》、《阿波罗13号》一样,都是历史题材的电影,具有深度和严肃性。所以答案是(D)。
+
+Q: 寻找一部与《勇敢的心》、《风月俏佳人》、《阿波罗13号》、《与狼共舞》类似的电影:
+选项:
+(A)《蝙蝠侠:突袭阿卡姆》
+(B)《肖申克的救赎》
+(C)《玩具总动员》
+(D)《狮子王》
+A: 让我们一步一步来思考。
+《蝙蝠侠:突袭阿卡姆》是一部超级英雄电影,它的主题和风格与上述四部电影有较大的差异。
+《肖申克的救赎》是一部1994年的美国剧情电影,由弗兰克·德拉邦特执导,蒂姆·罗宾斯和摩根·弗里曼主演,这是一部讲述希望和毅力的电影。
+《玩具总动员》是一部动画电影,虽然它可能具有一些冒险和友谊的主题,但其主题和风格与上述四部电影有较大的差异。
+《狮子王》虽然是一部经典的动画电影,涵盖了勇气和成长的主题,但其主题和风格与上述四部电影有较大的差异。
+其中《肖申克的救赎》这部电影与《勇敢的心》、《风月俏佳人》、《阿波罗13号》、《与狼共舞》一样,都是具有深度和严肃性的电影,并且主题和风格与其他三部电影相似。所以答案是(B)。
+
+Q: 寻找一部与《惊世骇案》、《勇敢的心》、《低俗小说》、《辛德勒的名单》类似的电影:
+选项:
+(A)《卡里加里博士的小屋》
+(B)《肖申克的救赎》
+(C)《蜘蛛侠2》
+(D)《出租车》
+A: 让我们一步一步来思考。
+《卡里加里博士的小屋》是一部1920年的德国表现主义默片,由罗伯特·维内执导。这部电影通常被认为是德国表现主义电影的一部里程碑式作品,也是最早的恐怖电影之一。
+《肖申克的救赎》是一部1994年的美国剧情电影,由弗兰克·德拉邦特执导,蒂姆·罗宾斯和摩根·弗里曼主演,这是一部讲述希望和毅力的电影。
+《蜘蛛侠2》是一部2004年的美国超级英雄电影,由萨姆·雷米执导,托比·马奎尔主演,是《蜘蛛侠》三部曲的第二部。
+《出租车》这是一部2004年的美国喜剧动作片,由蒂姆·斯托瑞执导,吉米·福兰和昆汀·拉塔法主演。这部电影是1998年法国电影的美国翻拍版。
+而题目中《惊世骇案》、《勇敢的心》、《低俗小说》和《辛德勒的名单》都是一些非常深刻、情节丰富且具有强烈人性主题的电影。它们都以其出色的剧本、精彩的表演和深刻的主题赢得了观众和评论家的高度赞誉。选项中《肖申克的救赎》讲述了一名被冤枉的银行家如何在监狱中保持希望,并最终逃脱的故事。这部电影的情节深入人心,人性描绘深刻,与题目中的电影有许多相似之处。所以答案是(B)。
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Natural_Language_Inference_Direct.txt b/configs/datasets/CHARM/few-shot-examples/Global_Natural_Language_Inference_Direct.txt
new file mode 100644
index 000000000..dcac4a19b
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Natural_Language_Inference_Direct.txt
@@ -0,0 +1,25 @@
+请根据题目中两句话的关系选择正确答案。
+
+Q:语句一:可是老人小心翼翼将蛇挑开,让它爬向草丛,嘴里念念有词:罪过,罪过,这本来是你的家呀
+语句二:老人心里十分难过。
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+A:(A)
+
+Q:语句一:她是一个有着丰满的脸、丰满的嘴唇和大牙齿的黑色爆炸头女人。
+语句二:她喜欢抹红色的口红,穿红色的衣服。
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+A:(C)
+
+Q:语句一:你不确定你已经清楚你站着谁的一面。
+语句二:你支持谁,这一点显而易见。
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+A:(B)
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Natural_Language_Inference_EN-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Natural_Language_Inference_EN-CoT.txt
new file mode 100644
index 000000000..202421bc4
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Natural_Language_Inference_EN-CoT.txt
@@ -0,0 +1,28 @@
+请根据题目中两句话的关系选择正确答案。
+
+Q:语句一:可是老人小心翼翼将蛇挑开,让它爬向草丛,嘴里念念有词:罪过,罪过,这本来是你的家呀
+语句二:老人心里十分难过。
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+A: Let's think step by step.
+The first sentence describes the process of an old man carefully handling a snake's movements. The old man says "sin, sin, sin," indicating that he feels guilty and sad for violating the snake's territory. The second sentence can be inferred, the old man is very sad in his heart. Therefore, the two sentences contain a relationship. So the answer is (A).
+
+Q:语句一:她是一个有着丰满的脸、丰满的嘴唇和大牙齿的黑色爆炸头女人。
+语句二:她喜欢抹红色的口红,穿红色的衣服。
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+A: Let's think step by step.
+These two sentences both describe the same woman, but they focus on different characteristics. The first sentence describes her physical characteristics, including face, lips, teeth, and hairstyle. The second sentence describes her aesthetic preferences, including lipstick color and clothing color. These two sentences do not have any obvious implication or contradictory relationship, so we can say that they are unrelated. So the answer is (C).
+
+Q:语句一:你不确定你已经清楚你站着谁的一面。
+语句二:你支持谁,这一点显而易见。
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+A: Let's think step by step.
+The first sentence indicates that you are not sure who you support, while the second sentence clearly indicates that your position is obvious, which means you are clear about who you support. Therefore, the content of these two sentences is contradictory to each other. So the answer is (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Natural_Language_Inference_XLT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Natural_Language_Inference_XLT.txt
new file mode 100644
index 000000000..16b45350a
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Natural_Language_Inference_XLT.txt
@@ -0,0 +1,69 @@
+请根据题目中两句话的关系选择正确答案。
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:语句一:可是老人小心翼翼将蛇挑开,让它爬向草丛,嘴里念念有词:罪过,罪过,这本来是你的家呀
+语句二:老人心里十分难过。
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Sentence 1:But the old man carefully picked the snake away from the grass, letting it crawl towards the grass, mumbling: sin, sin, this was your home!
+Sentence 2: The old man was very sad in his heart.
+What is the relationship between these two statements?
+(A) Contained
+(B) contradictory
+(C) Unrelated
+Step-by-step answer:
+1.The first sentence describes the process of an old man carefully handling a snake's movements.
+2.The old man says "sin, sin, sin," indicating that he feels guilty and sad for violating the snake's territory.
+3.The second sentence can be inferred, the old man is very sad in his heart. Therefore, the two sentences contain a relationship.
+So the answer is (A).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:语句一:她是一个有着丰满的脸、丰满的嘴唇和大牙齿的黑色爆炸头女人。
+语句二:她喜欢抹红色的口红,穿红色的衣服。
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Sentence 1:Sentence 1: She was a black explosive-headed woman with a plump face, full lips and big teeth.
+Sentence 2: She likes to wear red lipstick and red clothes.
+What is the relationship between these two statements?
+(A) implied
+(B) contradictory
+(C) Unrelated
+Step-by-step answer:
+1.These two sentences both describe the same woman, but they focus on different characteristics.
+2.The first sentence describes her physical characteristics, including face, lips, teeth, and hairstyle.
+3.The second sentence describes her aesthetic preferences, including lipstick color and clothing color. These two sentences do not have any obvious implication or contradictory relationship, so we can say that they are unrelated.
+So the answer is (C).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:语句一:你不确定你已经清楚你站着谁的一面。
+语句二:你支持谁,这一点显而易见。
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Sentence 1: You're not sure you've made it clear whose side you're on.
+Sentence 2: It is obvious whose side you are on.
+What is the relationship between these two statements?
+(A) Contained
+(B) Contradictory
+(C) Unrelated
+Step-by-step answer:
+1.The first sentence indicates that you are not sure who you support, while the second sentence clearly indicates that your position is obvious, which means you are clear about who you support.
+2.Therefore, the content of these two sentences is contradictory to each other.
+So the answer is (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Natural_Language_Inference_ZH-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Natural_Language_Inference_ZH-CoT.txt
new file mode 100644
index 000000000..4a01f45e4
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Natural_Language_Inference_ZH-CoT.txt
@@ -0,0 +1,28 @@
+请根据题目中两句话的关系选择正确答案。
+
+Q:语句一:可是老人小心翼翼将蛇挑开,让它爬向草丛,嘴里念念有词:罪过,罪过,这本来是你的家呀
+语句二:老人心里十分难过。
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+A:让我们一步一步来思考。
+第一句话描述了个老人在小心地处理一条蛇的行的过程,老人说道“罪过,罪过”,说明他因为侵犯了蛇的领地而感到内疚和难过。可以推出第二句话,老人心里十分难过。因此两句话是蕴含关系。所以答案是(A)。
+
+Q:语句一:她是一个有着丰满的脸、丰满的嘴唇和大牙齿的黑色爆炸头女人。
+语句二:她喜欢抹红色的口红,穿红色的衣服。
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+A:让我们一步一步来思考。
+这两句话都在描述同一个女人,但是它们关注的特征是不同的。第一句话描述了她的身体特征,包括脸、嘴唇、牙齿和发型。第二句话描述了她的审美喜好,包括口红颜色和衣服颜色。这两句话并没有明显的蕴含或矛盾关系,因此,我们可以说这两句话是无关的。所以答案是(C)。
+
+Q:语句一:你不确定你已经清楚你站着谁的一面。
+语句二:你支持谁,这一点显而易见。
+请问这两句话什么关系?
+(A) 蕴含
+(B) 矛盾
+(C) 无关
+A:让我们一步一步来思考。
+第一句话表示你不确定你支持谁,而第二句话则明确表明你的立场是显而易见的,也就是说你清楚自己支持谁。因此,这两句话的内容是相互矛盾的。所以答案是(B)。
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Reading_Comprehension_Direct.txt b/configs/datasets/CHARM/few-shot-examples/Global_Reading_Comprehension_Direct.txt
new file mode 100644
index 000000000..22e01f5c0
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Reading_Comprehension_Direct.txt
@@ -0,0 +1,22 @@
+请理解题目含义并选择正确答案。
+
+Q:一个人摄入的精制糖和在消化过程中分解成糖的食物几乎是该人所有葡萄糖(一种糖)的饮食来源的血液。然而, 咖啡在消化过程中本身不会分解成糖, 有时会导致人的血糖水平急剧上升, 即使咖啡没有加奶油或任何甜味剂。 以下哪项,如果为真,最有助于解释咖啡对如上所述的血糖水平的影响? 选项:
+(A) 久坐办公室工作的人更有可能喝大量咖啡和比从事需要持续体育锻炼的工作的人血糖水平更高。
+(B) 人们经常在饭后喝咖啡,这些食物由几种食物组成,这些食物在消化过程中会迅速分解成糖分。
+(C) 对许多人来说,一块巧克力蛋糕的消耗量与一杯普通咖啡相同的刺激效果。
+(D) 一小时内喝两杯以上的咖啡会增加人的压力水平,身体通过将储存的葡萄糖释放到血液中来应对压力。
+A:(D)
+
+Q:某人因为心理疾病尝试了几种不同的心理疗法:精神分析疗法,认知行为疗法以及沙盘游戏疗法.他说:"心理治疗过程让我非常不快乐,因此,这些疗法是无效的." 以下哪项如果为真,将最有力质疑上述的结论?? 选项:
+(A) 几种不同心理疗法所针对的心理疾病是不同的
+(B) 尝试多种心理疗法的人要比只尝试一种疗法的人快乐
+(C) 同时尝试不同心理疗法能够更容易找到可以起作用的方法
+(D) 治疗效果好的人在治疗过程中往往感觉不快乐
+A:(D)
+
+Q:一本书要成为畅销书,必须有可读性或者经过精心的包装. 如果上述断定成立,则以下哪项一定为真?? 选项:
+(A) 没有可读性又没有精心包装的书一定不是畅销书
+(B) 没经过精心包装的书一定不是畅销书
+(C) 有可读性的书一定是畅销书
+(D) 大多数人喜欢有可读性的畅销书
+A:(A)
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Reading_Comprehension_EN-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Reading_Comprehension_EN-CoT.txt
new file mode 100644
index 000000000..25120028a
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Reading_Comprehension_EN-CoT.txt
@@ -0,0 +1,25 @@
+请理解题目含义并选择正确答案。
+
+Q:一个人摄入的精制糖和在消化过程中分解成糖的食物几乎是该人所有葡萄糖(一种糖)的饮食来源的血液。然而, 咖啡在消化过程中本身不会分解成糖, 有时会导致人的血糖水平急剧上升, 即使咖啡没有加奶油或任何甜味剂。 以下哪项,如果为真,最有助于解释咖啡对如上所述的血糖水平的影响? 选项:
+(A) 久坐办公室工作的人更有可能喝大量咖啡和比从事需要持续体育锻炼的工作的人血糖水平更高。
+(B) 人们经常在饭后喝咖啡,这些食物由几种食物组成,这些食物在消化过程中会迅速分解成糖分。
+(C) 对许多人来说,一块巧克力蛋糕的消耗量与一杯普通咖啡相同的刺激效果。
+(D) 一小时内喝两杯以上的咖啡会增加人的压力水平,身体通过将储存的葡萄糖释放到血液中来应对压力。
+A: Let's think step by step
+The key to the question is to identify a factor that can explain how coffee causes an increase in blood sugar levels, even though coffee itself does not break down into sugar during digestion. This requires us to find a mechanism that can explain how coffee indirectly affects blood sugar levels. Option (D) "Drinking two or more cups of coffee within an hour can increase a person's stress level, and the body responds to stress by releasing stored glucose into the bloodstream." If true, it is most helpful in explaining the impact of coffee on blood sugar levels. This option provides a possible mechanism that the stress response caused by coffee may lead to the release of stored glucose by the body, resulting in an increase in blood sugar levels. This explains why coffee (even without cream or sweeteners) can lead to an increase in blood sugar levels, even if it does not break down into sugar during digestion. So the answer is (D).
+
+Q:某人因为心理疾病尝试了几种不同的心理疗法:精神分析疗法,认知行为疗法以及沙盘游戏疗法.他说:"心理治疗过程让我非常不快乐,因此,这些疗法是无效的." 以下哪项如果为真,将最有力质疑上述的结论?? 选项:
+(A) 几种不同心理疗法所针对的心理疾病是不同的
+(B) 尝试多种心理疗法的人要比只尝试一种疗法的人快乐
+(C) 同时尝试不同心理疗法能够更容易找到可以起作用的方法
+(D) 治疗效果好的人在治疗过程中往往感觉不快乐
+A: Let's think step by step
+By understanding the question, it can be inferred that if unhappiness during psychotherapy is a sign of good treatment outcomes, then the person's conclusion that the therapy is ineffective because they feel unhappy during the treatment may be incorrect. He may have misunderstood that the difficulties and discomfort during the treatment process are manifestations of ineffective treatment, but in reality, this may be a sign that treatment is working. (D) If true, it would strongly question the above conclusion that people with good treatment outcomes often feel unhappy during the treatment process. So the answer is (D).
+
+Q:一本书要成为畅销书,必须有可读性或者经过精心的包装. 如果上述断定成立,则以下哪项一定为真?选项:
+(A) 没有可读性又没有精心包装的书一定不是畅销书
+(B) 没经过精心包装的书一定不是畅销书
+(C) 有可读性的书一定是畅销书
+(D) 大多数人喜欢有可读性的畅销书
+A: Let's think step by step
+According to the above conclusion, "To become a bestseller, a book must have readability or be carefully packaged." Therefore, (A) "A book without readability or careful packaging is definitely not a bestseller.". Because if a book is neither readable nor carefully packaged, it does not meet the conditions to become a bestseller. So the answer is (A).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Reading_Comprehension_XLT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Reading_Comprehension_XLT.txt
new file mode 100644
index 000000000..cab3f02a6
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Reading_Comprehension_XLT.txt
@@ -0,0 +1,61 @@
+请理解题目含义并选择正确答案。
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:一个人摄入的精制糖和在消化过程中分解成糖的食物几乎是该人所有葡萄糖(一种糖)的饮食来源的血液。然而, 咖啡在消化过程中本身不会分解成糖, 有时会导致人的血糖水平急剧上升, 即使咖啡没有加奶油或任何甜味剂。 以下哪项,如果为真,最有助于解释咖啡对如上所述的血糖水平的影响? 选项:
+(A) 久坐办公室工作的人更有可能喝大量咖啡和比从事需要持续体育锻炼的工作的人血糖水平更高。
+(B) 人们经常在饭后喝咖啡,这些食物由几种食物组成,这些食物在消化过程中会迅速分解成糖分。
+(C) 对许多人来说,一块巧克力蛋糕的消耗量与一杯普通咖啡相同的刺激效果。
+(D) 一小时内喝两杯以上的咖啡会增加人的压力水平,身体通过将储存的葡萄糖释放到血液中来应对压力。
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request: A person's intake of refined sugar and foods that break down into sugar during digestion is almost all of that person's dietary source of glucose (a type of sugar) in the bloodstream. However, coffee itself does not break down into sugar during digestion, which can sometimes cause a person's blood sugar levels to rise sharply, even if the coffee is not sweetened with cream or any sweetener. Which of the following, if true, would best help explain the effect of coffee on blood sugar levels as described above? Options:
+(A) People with sedentary office jobs are more likely to drink large amounts of coffee and to have higher blood sugar levels than people with jobs that require constant physical activity.
+(B) People often drink coffee with meals that consist of several foods that break down quickly into sugar during digestion.
+(C) For many people, a slice of chocolate cake consumes the same stimulating effect as a regular cup of coffee.
+(D) Drinking more than two cups of coffee in an hour increases a person's stress level, and the body responds to stress by releasing stored glucose into the bloodstream.
+Step-by-step answer:
+1.The key to the question is to identify a factor that can explain how coffee causes an increase in blood sugar levels, even though coffee itself does not break down into sugar during digestion.
+2.This requires us to find a mechanism that can explain how coffee indirectly affects blood sugar levels. Option (D) "Drinking two or more cups of coffee within an hour can increase a person's stress level, and the body responds to stress by releasing stored glucose into the bloodstream." If true, it is most helpful in explaining the impact of coffee on blood sugar levels. This option provides a possible mechanism that the stress response caused by coffee may lead to the release of stored glucose by the body, resulting in an increase in blood sugar levels.
+3.This explains why coffee (even without cream or sweeteners) can lead to an increase in blood sugar levels, even if it does not break down into sugar during digestion.
+So the answer is (D).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:某人因为心理疾病尝试了几种不同的心理疗法:精神分析疗法,认知行为疗法以及沙盘游戏疗法.他说:"心理治疗过程让我非常不快乐,因此,这些疗法是无效的." 以下哪项如果为真,将最有力质疑上述的结论?? 选项:
+(A) 几种不同心理疗法所针对的心理疾病是不同的
+(B) 尝试多种心理疗法的人要比只尝试一种疗法的人快乐
+(C) 同时尝试不同心理疗法能够更容易找到可以起作用的方法
+(D) 治疗效果好的人在治疗过程中往往感觉不快乐
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request: A person has tried several different psychotherapies for a mental illness:psychoanalytic therapy, cognitive behavioral therapy, and sandplay therapy. He says: "The psychotherapy process made me very unhappy and, therefore, these therapies are ineffective." Which of the following, if true, would most strongly challenge the above conclusion? Options:
+(A) Several different psychotherapies target different mental illnesses.
+(B) People who try multiple psychotherapies are happier than those who try only one.
+(C) Trying different psychotherapies at the same time makes it easier to find the one that works
+(D) People who do well in therapy tend to feel unhappy during the therapy process
+Step-by-step answer:
+1.By understanding the question, it can be inferred that if unhappiness during psychotherapy is a sign of good treatment outcomes, then the person's conclusion that the therapy is ineffective because they feel unhappy during the treatment may be incorrect.
+2.He may have misunderstood that the difficulties and discomfort during the treatment process are manifestations of ineffective treatment, but in reality, this may be a sign that treatment is working. (D) If true, it would strongly question the above conclusion that people with good treatment outcomes often feel unhappy during the treatment process.
+So the answer is (D).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:一本书要成为畅销书,必须有可读性或者经过精心的包装. 如果上述断定成立,则以下哪项一定为真?选项:
+(A) 没有可读性又没有精心包装的书一定不是畅销书
+(B) 没经过精心包装的书一定不是畅销书
+(C) 有可读性的书一定是畅销书
+(D) 大多数人喜欢有可读性的畅销书You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request: For a book to be a bestseller,it must be readable or well packaged. If the above assertion holds true, which of the following must be true? Options:
+(A) A book that is not readable and not well-packaged is not a bestseller.
+(B) A book that is not well-packaged must not be a bestseller.
+(C) A book that is readable must be a bestseller
+(D) Most people like bestsellers that are readable.
+Step-by-step answer:
+1.According to the above conclusion, "To become a bestseller, a book must have readability or be carefully packaged." Therefore, (A) "A book without readability or careful packaging is definitely not a bestseller.".
+2.Because if a book is neither readable nor carefully packaged, it does not meet the conditions to become a bestseller.
+So the answer is (A).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Reading_Comprehension_ZH-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Reading_Comprehension_ZH-CoT.txt
new file mode 100644
index 000000000..ef2349677
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Reading_Comprehension_ZH-CoT.txt
@@ -0,0 +1,25 @@
+请理解题目含义并选择正确答案。
+
+Q:一个人摄入的精制糖和在消化过程中分解成糖的食物几乎是该人所有葡萄糖(一种糖)的饮食来源的血液。然而, 咖啡在消化过程中本身不会分解成糖, 有时会导致人的血糖水平急剧上升, 即使咖啡没有加奶油或任何甜味剂。 以下哪项,如果为真,最有助于解释咖啡对如上所述的血糖水平的影响? 选项:
+(A) 久坐办公室工作的人更有可能喝大量咖啡和比从事需要持续体育锻炼的工作的人血糖水平更高。
+(B) 人们经常在饭后喝咖啡,这些食物由几种食物组成,这些食物在消化过程中会迅速分解成糖分。
+(C) 对许多人来说,一块巧克力蛋糕的消耗量与一杯普通咖啡相同的刺激效果。
+(D) 一小时内喝两杯以上的咖啡会增加人的压力水平,身体通过将储存的葡萄糖释放到血液中来应对压力。
+A:让我们一步一步来思考。
+题目的关键是要找出一个能够解释咖啡如何导致血糖水平上升的因素,尽管咖啡在消化过程中本身不会分解成糖。这就需要我们找到一个可以解释咖啡如何间接影响血糖水平的机制。选项 (D) "一小时内喝两杯以上的咖啡会增加人的压力水平,身体通过将储存的葡萄糖释放到血液中来应对压力" 如果为真,最有助于解释咖啡对血糖水平的影响。这个选项提供了一个可能的机制,即咖啡引起的压力反应可能导致身体释放储存的葡萄糖,从而导致血糖水平上升。这解释了为什么咖啡(即使没有加奶油或甜味剂)会导致血糖水平上升,即使它在消化过程中不会分解成糖。所以答案是(D)。
+
+Q:某人因为心理疾病尝试了几种不同的心理疗法:精神分析疗法,认知行为疗法以及沙盘游戏疗法.他说:"心理治疗过程让我非常不快乐,因此,这些疗法是无效的." 以下哪项如果为真,将最有力质疑上述的结论?? 选项:
+(A) 几种不同心理疗法所针对的心理疾病是不同的
+(B) 尝试多种心理疗法的人要比只尝试一种疗法的人快乐
+(C) 同时尝试不同心理疗法能够更容易找到可以起作用的方法
+(D) 治疗效果好的人在治疗过程中往往感觉不快乐
+A:让我们一步一步来思考。
+理解题目可知,如果心理治疗过程中的不快乐是治疗效果好的一个标志,那么这个人的结论——认为疗法无效,因为他在治疗过程中感到不快乐——就可能是错误的。他可能误解了治疗过程的困难和不适是治疗无效的表现,而实际上这可能是治疗正在起作用的标志。(D) "治疗效果好的人在治疗过程中往往感觉不快乐" 如果为真,将最有力质疑上述的结论。所以答案是(D)。
+
+Q:一本书要成为畅销书,必须有可读性或者经过精心的包装. 如果上述断定成立,则以下哪项一定为真? 选项:
+(A) 没有可读性又没有精心包装的书一定不是畅销书
+(B) 没经过精心包装的书一定不是畅销书
+(C) 有可读性的书一定是畅销书
+(D) 大多数人喜欢有可读性的畅销书
+A:让我们一步一步来思考。
+根据上述断定,“一本书要成为畅销书,必须有可读性或者经过精心的包装”,所以 (A) "没有可读性又没有精心包装的书一定不是畅销书" 是一定为真的。因为如果一本书既没有可读性,也没有经过精心的包装,那么它就不满足成为畅销书的条件。所以答案是(A)。
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Sequence_Understanding_Direct.txt b/configs/datasets/CHARM/few-shot-examples/Global_Sequence_Understanding_Direct.txt
new file mode 100644
index 000000000..36638b45e
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Sequence_Understanding_Direct.txt
@@ -0,0 +1,22 @@
+根据上下文选择正确答案
+
+Q:以下哪个列表按照时间顺序排列正确?选项:
+(A) 大学,硕士,博士,博士后
+(B) 大学,博士,硕士,博士后
+(C) 大学,高中,博士后,博士
+(D) 博士后,大学,硕士,博士
+A:(A)
+
+Q:以下哪个列表按照时间顺序排列正确?选项:
+(A) 五月一日,七月十五日,八月十二日,六月十四日
+(B) 七月十五日,八月十二日,五月一日,六月十四日
+(C) 八月十二日,五月一日,七月十五日,六月十四日
+(D) 五月一日,六月十四日,七月十五日,八月十二日
+A:(D)
+
+Q:以下哪个列表按时间顺序排列正确?选项:
+(A) 通往天国的倒计时,世纪末的魔术师,贝克街的亡灵,侦探们的镇魂歌
+(B) 世纪末的魔术师,贝克街的亡灵,通往天国的倒计时,侦探们的镇魂歌
+(C) 世纪末的魔术师,通往天国的倒计时,贝克街的亡灵,侦探们的镇魂歌
+(D) 世纪末的魔术师,贝克街的亡灵,侦探们的镇魂歌,通往天国的倒计时
+A:(C)
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Sequence_Understanding_EN-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Sequence_Understanding_EN-CoT.txt
new file mode 100644
index 000000000..9b09ea7f6
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Sequence_Understanding_EN-CoT.txt
@@ -0,0 +1,25 @@
+根据上下文选择正确答案
+
+Q:以下哪个列表按照时间顺序排列正确?选项:
+(A) 大学,硕士,博士,博士后
+(B) 大学,博士,硕士,博士后
+(C) 大学,高中,博士后,博士
+(D) 博士后,大学,硕士,博士
+A: Let's think step by step.
+The title options introduce four educational concepts: university, master's degree, doctoral degree, and postdoctoral degree. They are ranked in the order of obtaining these degrees. The first one obtained is a university degree, followed by a master's degree, then a doctoral degree, and finally a postdoctoral degree. So the answer is (A).
+
+Q:以下哪个列表按照时间顺序排列正确?选项:
+(A) 五月一日,七月十五日,八月十二日,六月十四日
+(B) 七月十五日,八月十二日,五月一日,六月十四日
+(C) 八月十二日,五月一日,七月十五日,六月十四日
+(D) 五月一日,六月十四日,七月十五日,八月十二日
+A: Let's think step by step.
+The question options introduce four dates, sorted in chronological order of the year as May 1st, June 14th, July 15th, and August 12th. So the answer is (D).
+
+Q:以下哪个列表按时间顺序排列正确?选项:
+(A) 通往天国的倒计时,世纪末的魔术师,贝克街的亡灵,侦探们的镇魂歌
+(B) 世纪末的魔术师,贝克街的亡灵,通往天国的倒计时,侦探们的镇魂歌
+(C) 世纪末的魔术师,通往天国的倒计时,贝克街的亡灵,侦探们的镇魂歌
+(D) 世纪末的魔术师,贝克街的亡灵,侦探们的镇魂歌,通往天国的倒计时
+A: Let's think step by step.
+The options mention the names of four Conan theater versions, among which the Magician of the End of the Century was released in 1999, the Undead on Baker Street was released in 2002, the Countdown to Heaven was released in 2001, and the Souls of Detectives was released in 2006. Therefore, in chronological order, they are the Magician of the End of the Century, the Countdown to Heaven, the Undead on Baker Street, and the Souls of Detectives. So the answer is (C).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Sequence_Understanding_XLT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Sequence_Understanding_XLT.txt
new file mode 100644
index 000000000..e26e293c7
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Sequence_Understanding_XLT.txt
@@ -0,0 +1,60 @@
+根据上下文选择正确答案
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:以下哪个列表按照时间顺序排列正确?选项:
+(A) 大学,硕士,博士,博士后
+(B) 大学,博士,硕士,博士后
+(C) 大学,高中,博士后,博士
+(D) 博士后,大学,硕士,博士
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Which of the following lists is correct in chronological order? Options:
+(A) University, M.A., Ph.D., Post-doctoral
+(B) University, Ph.D., M.Phil, Post Ph.D.
+(C) University, High School, Post-doctoral, Doctoral
+(D) Post-doctoral, University, Master's, PhD
+Step-by-step answer:
+1.The title options introduce four educational concepts: university, master's degree, doctoral degree, and postdoctoral degree.
+2.They are ranked in the order of obtaining these degrees. The first one obtained is a university degree, followed by a master's degree, then a doctoral degree, and finally a postdoctoral degree.
+So the answer is (A).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:以下哪个列表按照时间顺序排列正确?选项:
+(A) 五月一日,七月十五日,八月十二日,六月十四日
+(B) 七月十五日,八月十二日,五月一日,六月十四日
+(C) 八月十二日,五月一日,七月十五日,六月十四日
+(D) 五月一日,六月十四日,七月十五日,八月十二日
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Which of the following list is correct in chronological order? Options:
+(A) May 1, July 15, August 12, June 14
+(B) July 15, August 12, May 1, June 14
+(C) August 12, May 1, July 15, June 14
+(D) May 1, June 14, July 15, August 12
+Step-by-step answer:
+1.The question options introduce four dates, sorted in chronological order of the year as May 1st, June 14th, July 15th, and August 12th.
+So the answer is (D).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:以下哪个列表按时间顺序排列正确?选项:
+(A) 通往天国的倒计时,世纪末的魔术师,贝克街的亡灵,侦探们的镇魂歌
+(B) 世纪末的魔术师,贝克街的亡灵,通往天国的倒计时,侦探们的镇魂歌
+(C) 世纪末的魔术师,通往天国的倒计时,贝克街的亡灵,侦探们的镇魂歌
+(D) 世纪末的魔术师,贝克街的亡灵,侦探们的镇魂歌,通往天国的倒计时
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Which of the following lists is correct in chronological order? Options:
+(A) Countdown to Heaven, Magicians at the End of the Century, The Undead of Baker Street, Detectives' Requiem
+(B) The Magician at the End of the Century, The Undead of Baker Street, Countdown to Heaven, The Detectives' Requiem
+(C) The Magician at the End of the Century, Countdown to Heaven, The Undead of Baker Street, The Detectives' Requiem
+(D) The Magician at the End of the Century, The Undead of Baker Street, The Detectives' Requiem, The Countdown to Heaven
+Step-by-step answer:
+1.The options mention the names of four Conan theater versions, among which the Magician of the End of the Century was released in 1999, the Undead on Baker Street was released in 2002, the Countdown to Heaven was released in 2001, and the Souls of Detectives was released in 2006.
+2.Therefore, in chronological order, they are the Magician of the End of the Century, the Countdown to Heaven, the Undead on Baker Street, and the Souls of Detectives.
+So the answer is (C).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Sequence_Understanding_ZH-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Sequence_Understanding_ZH-CoT.txt
new file mode 100644
index 000000000..b7f052a09
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Sequence_Understanding_ZH-CoT.txt
@@ -0,0 +1,25 @@
+根据上下文选择正确答案
+
+Q:以下哪个列表按照时间顺序排列正确?选项:
+(A) 大学,硕士,博士,博士后
+(B) 大学,博士,硕士,博士后
+(C) 大学,高中,博士后,博士
+(D) 博士后,大学,硕士,博士
+A:让我们一步一步来思考。
+题目选项中引入了四个学历概念“大学,硕士,博士,博士后”,按照取得这些学历的顺序进行排序,首先获得的是大学学历,其次是硕士,然后是博士,最后是博士后。所以答案是(A)。
+
+Q:以下哪个列表按照时间顺序排列正确?选项:
+(A) 五月一日,七月十五日,八月十二日,六月十四日
+(B) 七月十五日,八月十二日,五月一日,六月十四日
+(C) 八月十二日,五月一日,七月十五日,六月十四日
+(D) 五月一日,六月十四日,七月十五日,八月十二日
+A:让我们一步一步来思考。
+题目选项中引入了四个日期,按照一年中的时间顺序排序为五月一日,六月十四日,七月十五日,八月十二日。所以答案是(D)。
+
+Q:以下哪个列表按时间顺序排列正确?选项:
+(A) 通往天国的倒计时,世纪末的魔术师,贝克街的亡灵,侦探们的镇魂歌
+(B) 世纪末的魔术师,贝克街的亡灵,通往天国的倒计时,侦探们的镇魂歌
+(C) 世纪末的魔术师,通往天国的倒计时,贝克街的亡灵,侦探们的镇魂歌
+(D) 世纪末的魔术师,贝克街的亡灵,侦探们的镇魂歌,通往天国的倒计时
+A:让我们一步一步来思考。
+选项中提到了四个柯南剧场版的名称,其中世纪末的魔术师是1999年上映的,贝克街的亡灵是2002年上映的,通往天国的倒计时是2001年上映的,侦探们的镇魂歌是2006年上映的,因此按时间排序是世纪末的魔术师,通往天国的倒计时,贝克街的亡灵,侦探们的镇魂歌。所以答案是(C)。
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Sport_Understanding_Direct.txt b/configs/datasets/CHARM/few-shot-examples/Global_Sport_Understanding_Direct.txt
new file mode 100644
index 000000000..1169a793b
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Sport_Understanding_Direct.txt
@@ -0,0 +1,19 @@
+判断一句人为构造的关于体育的句子是否可信。
+
+Q: 下面的句子可信吗? "泰森打出右直拳"
+选项:
+(A) 可信
+(B) 不可信
+A: (A)
+
+Q: 下面的句子可信吗? "贝克汉姆完成了一次扣篮"
+选项:
+(A) 可信
+(B) 不可信
+A: (B)
+
+Q: 下面的句子可信吗? "勒布朗詹姆斯打进老鹰球"
+选项:
+(A) 可信
+(B) 不可信
+A: (B)
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Sport_Understanding_EN-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Sport_Understanding_EN-CoT.txt
new file mode 100644
index 000000000..b76e297b4
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Sport_Understanding_EN-CoT.txt
@@ -0,0 +1,22 @@
+判断一句人为构造的关于体育的句子是否可信。
+
+Q: 下面的句子可信吗? "泰森打出右直拳"
+选项:
+(A) 可信
+(B) 不可信
+A: Let's think step by step.
+Tyson is an American professional boxer. The right straight punch is a common move in boxing. It's quite normal for a boxer to throw a right straight punch, so this sentence is credible. The correct answer should be (A).
+
+Q: 下面的句子可信吗? "贝克汉姆完成了一次扣篮"
+选项:
+(A) 可信
+(B) 不可信
+A: Let's think step by step.
+Beckham is an English professional footballer. A slam dunk is a technical move in basketball. Therefore, this sentence is not credible. The correct answer should be (B).
+
+Q: 下面的句子可信吗? "勒布朗詹姆斯打进老鹰球"
+选项:
+(A) 可信
+(B) 不可信
+A: Let's think step by step.
+LeBron James is a well-known American professional basketball player. An eagle is a term in golf, meaning two strokes under par. Therefore, this sentence is not credible. The correct answer should be (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Sport_Understanding_XLT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Sport_Understanding_XLT.txt
new file mode 100644
index 000000000..c8b26c296
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Sport_Understanding_XLT.txt
@@ -0,0 +1,57 @@
+判断一句人为构造的关于体育的句子是否可信。
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:下面的句子可信吗? "泰森打出右直拳"
+选项:
+(A) 可信
+(B) 不可信
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request: Is the following sentence plausible? "Tyson throws a straight right."
+Options:
+(A) Credible
+(B) Unbelievable
+Step-by-step answer:
+1.Tyson is a professional boxer from the American. The right straight punch is a common move in boxing.
+2.It's normal for a boxer to throw a right straight punch, so this sentence is credible.
+So the answer is (A).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:下面的句子可信吗? "贝克汉姆完成了一次扣篮"
+选项:
+(A) 可信
+(B) 不可信
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request: Is the following sentence plausible? "Beckham completed a slam dunk."
+Options:
+(A) Credible
+(B) Unbelievable
+Step-by-step answer:
+1.Beckham is a professional footballer from England.
+2.A slam dunk is a technical move in basketball.
+3.Therefore, this sentence is not credible.
+So the answer is (B).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:下面的句子可信吗? "勒布朗詹姆斯打进老鹰球"
+选项:
+(A) 可信
+(B) 不可信
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request: Is the following sentence believable? "LeBron James scored the Eagles' goal."
+Options:
+(A) Credible
+(B) Unbelievable
+Step-by-step answer:
+1.LeBron James is a well-known professional basketball player from the United States.
+2.An eagle is a term in golf, meaning two strokes under par.
+3.Therefore, this sentence is not credible.
+So the answer is (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Sport_Understanding_ZH-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Sport_Understanding_ZH-CoT.txt
new file mode 100644
index 000000000..451b3e021
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Sport_Understanding_ZH-CoT.txt
@@ -0,0 +1,22 @@
+判断一句人为构造的关于体育的句子是否可信。
+
+Q: 下面的句子可信吗? "泰森打出右直拳"
+选项:
+(A) 可信
+(B) 不可信
+A: 让我们一步一步来思考。
+泰森是一位美国职业拳击手。右直拳是拳击运动中的常用招式。作为拳击手使出右直拳这样的拳击动作是很正常的,所以这个句子是可信的,正确答案应该是(A)。
+
+Q: 下面的句子可信吗? "贝克汉姆完成了一次扣篮"
+选项:
+(A) 可信
+(B) 不可信
+A: 让我们一步一步来思考。
+贝克汉姆是一位英格兰的职业足球运动员。扣篮是篮球运动的技术动作。所以这个句子是不可信的,正确答案应该是(B)。
+
+Q: 下面的句子可信吗? "勒布朗詹姆斯打进老鹰球"
+选项:
+(A) 可信
+(B) 不可信
+A: 让我们一步一步来思考。
+勒布朗詹姆斯是一位知名的美国职业篮球运动员,老鹰球是高尔夫球术语,就是比标准杆少了两杆的意思。所以这个句子是不可信的,正确答案应该是(B)。
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Time_Understanding_Direct.txt b/configs/datasets/CHARM/few-shot-examples/Global_Time_Understanding_Direct.txt
new file mode 100644
index 000000000..e48a73597
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Time_Understanding_Direct.txt
@@ -0,0 +1,27 @@
+从上下文中推断日期。
+
+Q: 请根据题目选择正确答案。今天是1937年圣诞节前夜。请问10天前的日期是多少?选项:
+(A)1988年12月14日
+(B)2026年12月14日
+(C)1950年12月14日
+(D)1938年07月14日
+(E)1937年12月14日
+(F)2007年12月14日
+A: (E)
+
+Q: 请根据题目选择正确答案。明天是2019年11月12日。请问一年前的日期是多少?选项:
+(A)2018年08月25日
+(B)2018年11月04日
+(C)2018年11月02日
+(D)2018年11月11日
+(E)2018年09月04日
+A: (D)
+
+Q: 请根据题目选择正确答案。李静和王伟在1958年1月2日结婚。今天是他们的5周年纪念日。请问明天的日期是多少?选项:
+(A)1961年01月18日
+(B)1982年01月03日
+(C)1961年01月11日
+(D)1960年10月14日
+(E)1963年01月03日
+(F)1960年12月03日
+A: (E)
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Time_Understanding_EN-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Time_Understanding_EN-CoT.txt
new file mode 100644
index 000000000..4182c81cd
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Time_Understanding_EN-CoT.txt
@@ -0,0 +1,30 @@
+从上下文中推断日期。
+
+Q: 请根据题目选择正确答案。今天是1937年圣诞节前夜。请问10天前的日期是多少?选项:
+(A)1988年12月14日
+(B)2026年12月14日
+(C)1950年12月14日
+(D)1938年07月14日
+(E)1937年12月14日
+(F)2007年12月14日
+A: Let's think step by step.
+If today is Christmas Eve of 1937, then today's date is December 24, 1937. 10 days before today is December 14, 1937. So the answer is (E).
+
+Q: 请根据题目选择正确答案。明天是2019年11月12日。请问一年前的日期是多少?选项:
+(A)2018年08月25日
+(B)2018年11月04日
+(C)2018年11月02日
+(D)2018年11月11日
+(E)2018年09月04日
+A: Let's think step by step.
+If tomorrow is November 12, 2019, then today is November 11, 2019. The date one year ago from today is November 11, 2019. So the answer is (D).
+
+Q: 请根据题目选择正确答案。李静和王伟在1958年1月2日结婚。今天是他们的5周年纪念日。请问明天的日期是多少?选项:
+(A)1961年01月18日
+(B)1982年01月03日
+(C)1961年01月11日
+(D)1960年10月14日
+(E)1963年01月03日
+(F)1960年12月03日
+A: Let's think step by step.
+If Jane and John married on Jan 2, 1958, then and if it is their 5-year anniversary today, then today's date is Jan 2, 1963. The date tomorrow is Jan 3, 1963. So the answer is (E).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Time_Understanding_XLT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Time_Understanding_XLT.txt
new file mode 100644
index 000000000..f7ecad3f0
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Time_Understanding_XLT.txt
@@ -0,0 +1,71 @@
+从上下文中推断日期。
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:请根据题目选择正确答案。今天是1937年圣诞节前夜。请问10天前的日期是多少?选项:
+(A)1988年12月14日
+(B)2026年12月14日
+(C)1950年12月14日
+(D)1938年07月14日
+(E)1937年12月14日
+(F)2007年12月14日
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Choose the correct answer according to the question. Today is Christmas Eve 1937. What is the date 10 days ago? Options:
+(A) December 14, 1988
+(B)December 14, 2026
+(C)December 14, 1950
+(D)July 14, 1938
+(E)December 14, 1937
+(F) December 14, 2007
+Step-by-step answer:
+1.If today is Christmas Eve of 1937, then today's date is December 24, 1937.
+2.10 days before today is December 14, 1937.
+So the answer is (E).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:请根据题目选择正确答案。明天是2019年11月12日。请问一年前的日期是多少?选项:
+(A)2018年08月25日
+(B)2018年11月04日
+(C)2018年11月02日
+(D)2018年11月11日
+(E)2018年09月04日
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Select the correct answer as per the question. Tomorrow is 12/11/2019. What is the date one year ago? Options:
+(A) August 25, 2018
+(B)November 04, 2018
+(C)November 02, 2018
+(D)November 11, 2018
+(E) September 04, 2018
+Step-by-step answer:
+1.If tomorrow is November 12, 2019, then today is November 11, 2019.
+2.The date one year ago from today is November 11, 2019.
+So the answer is (D).
+
+I want you to act as a commonsense reasoning expert for Chinese.
+Request:请根据题目选择正确答案。李静和王伟在1958年1月2日结婚。今天是他们的5周年纪念日。请问明天的日期是多少?选项:
+(A)1961年01月18日
+(B)1982年01月03日
+(C)1961年01月11日
+(D)1960年10月14日
+(E)1963年01月03日
+(F)1960年12月03日
+You should retell the request in English.
+You should do the answer step by step to choose the right answer.
+You should step-by-step answer the request.
+You should tell me the answer in this format 'So the answer is'.
+Request:Select the correct answer according to the question. Li Jing and Wang Wei were married on 2/1/1958. Today is their 5th anniversary. What is the date for tomorrow, please? Options:
+(A) January 18th, 1961
+(B)January 03, 1982
+(C)January 11, 1961
+(D)October 14, 1960
+(E)January 03, 1963
+(F) December 03, 1960
+Step-by-step answer:
+1.If Jane and John married on Jan 2, 1958, then and if it is their 5-year anniversary today, then today's date is Jan 2, 1963.
+2.The date tomorrow is Jan 3, 1963.
+So the answer is (E).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples/Global_Time_Understanding_ZH-CoT.txt b/configs/datasets/CHARM/few-shot-examples/Global_Time_Understanding_ZH-CoT.txt
new file mode 100644
index 000000000..e5ff431ca
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples/Global_Time_Understanding_ZH-CoT.txt
@@ -0,0 +1,30 @@
+从上下文中推断日期。
+
+Q: 请根据题目选择正确答案。今天是1937年圣诞节前夜。请问10天前的日期是多少?选项:
+(A)1988年12月14日
+(B)2026年12月14日
+(C)1950年12月14日
+(D)1938年07月14日
+(E)1937年12月14日
+(F)2007年12月14日
+A: 让我们一步一步来思考。
+如果今天是1937年的圣诞节前夕,那么今天的日期就是1937年12月24日。今天之前的10天是1937年12月14日,也就是12/14/1937。所以答案是(E)。
+
+Q: 请根据题目选择正确答案。明天是2019年11月12日。请问一年前的日期是多少?选项:
+(A)2018年08月25日
+(B)2018年11月04日
+(C)2018年11月02日
+(D)2018年11月11日
+(E)2018年09月04日
+A: 让我们一步一步来思考。
+如果明天是2019年11月12日,那么今天就是2019年11月11日。从今天起算去年的这一天是2018年11月11日。所以答案是(D)。
+
+Q: 请根据题目选择正确答案。李静和王伟在1958年1月2日结婚。今天是他们的5周年纪念日。请问明天的日期是多少?选项:
+(A)1961年01月18日
+(B)1982年01月03日
+(C)1961年01月11日
+(D)1960年10月14日
+(E)1963年01月03日
+(F)1960年12月03日
+A: 让我们一步一步来思考。
+如果李静和王伟在1958年1月2日结婚,那么如果今天是他们结婚五周年纪念日,那么今天的日期就是1963年1月2日。明天的日期是1963年1月3日,也就是1961年01月03日。所以答案是(E)。
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Anachronisms_Judgment_Translate-EN.txt b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Anachronisms_Judgment_Translate-EN.txt
new file mode 100644
index 000000000..3012dc76b
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Anachronisms_Judgment_Translate-EN.txt
@@ -0,0 +1,25 @@
+Identify whether a given statement contains an era error.
+
+Q: Choose the correct option if the following statement contains an anachronism. How would a person with compulsory education and basic common sense choose?
+Li Bai wrote poetry with a fountain pen.
+Options:
+(A) Yes
+(B) No
+A: Let's think step by step.
+The statement mentions "Li Bai", a Chinese poet from the Tang Dynasty. The "fountain pen" mentioned in the statement is a modern device, so Li Bai could not have used a fountain pen to write his poems, and the statement contains an anachronism. The answer is (A).
+
+Q: Choose the correct option if the following statement contains an anachronism. What would a person with compulsory education and basic common sense choose?
+During the Tang Dynasty, people could buy Dream of Red Mansions on the streets.
+Options:
+(A) Yes
+(B) No
+A: Let's think step by step.
+This statement mentions Dream of Red Mansions, which was written by Cao Xueqin, a writer of the Qing Dynasty, and there was no Dream of Red Mansions during the Tang Dynasty, so the statement contains a period error. So the answer is (A).
+
+Q: Whether the following statement contains an epochal error, choose the correct option. What would a person with compulsory education and basic common sense choose?
+On October 1, 1998, people held the five-star red flag in their hands and celebrated the National Day in Tiananmen Square
+Options:
+(A) Yes
+(B) No
+A: Let's think step by step.
+The statement mentions the year 1998, New China was founded in 1949 and the five-star red flag was established as the national flag of China in 1949, so it is reasonable to expect that October 1, 1998 was a National Day and people celebrated the National Day in Tiananmen Square, so the statement does not contain an anachronism. So the answer is (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Movie_and_Music_Recommendation_Translate-EN.txt b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Movie_and_Music_Recommendation_Translate-EN.txt
new file mode 100644
index 000000000..92b08fb14
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Movie_and_Music_Recommendation_Translate-EN.txt
@@ -0,0 +1,40 @@
+Given based on the given list of artworks, identify the most similar.
+
+Q: The movies that have something in common with these movies Crazy Aliens, Bullitt, Killjoys and Crazy Stone are:
+Options.
+(A) 'Lost in Thailand'
+(B)The Young and the Restless
+(C)The Children of the River and the Lake
+(D)The Mekong Operation
+A: Let's think step by step.
+Crazy Aliens is a comedy sci-fi film directed by Ning Hao, written by Liu Cixin and Sun Xiaohang, and starring Huang Bo, Shen Teng and Xu Zheng, released in 2019.
+Bullfight is a black comedy film directed by Guan Hu and starring Huang Bo and Yan Ni, released in 2009.
+Killing Life is an absurd suspense comedy film directed by Guan Hu and co-starring Huang Bo, Ren Dahua, Su Youpeng and Yu Nan, released in 2012.
+Crazy Stone is a black comedy film directed by Ning Hao and starring Guo Tao, Liu Hua, Lian Jin, Liu Gang, Xu Zheng and Huang Bo, released in 2006.
+These are all famous classic Chinese comedy movies with Huang Bo in them, and out of all the options, the only movie that seems to have something in common with these movies is Lost in Thailand (a comedy film directed by Xu Zheng and starring Huang Bo, Xu Zheng and Wang Baoqiang, released in 2012). So the answer is (A).
+
+Q: The movie that has something in common with these movies 'Red High Beam', 'Alive', 'Big Red Lantern' and 'Hero' is:
+Option.
+(A) 'Not One Less'
+(B)Let the Bullets Fly
+(C)The Legend of Ah Fei
+(D)East is East, West is West
+A: Let's think step by step.
+Red Sorghum, a war literary film directed by Zhang Yimou and starring Jiang Wen, Gong Li and Teng Rujun, was released in China in 1987.
+Alive, a drama film directed by Zhang Yimou and starring Ge You and Gong Li, was released in China in 1994.
+Hanging the Red Lantern High is a drama film directed by Zhang Yimou and starring Gong Li, He Saifei, Ma Jingwu, Cao CuiFen, Kong Lin, and Jin Shuyuan, released in China in 1991.
+Hero is a martial arts film directed by Zhang Yimou and starring Jet Li, Tony Leung, Maggie Cheung, Chen Dao Ming, Zhang Ziyi and Donnie Yen, released in China in 2002.
+These are all famous classic Chinese movies directed by Zhang Yimou. Among all the choices, the only movie that seems to have something in common with these movies is Not One Less (a drama movie directed by Zhang Yimou and starring Wei Minzhi and Zhang Huike, released in 1999). So the answer is (A).
+
+Q: The songs that have something in common with these songs 'Nocturne', 'Materia Medica', 'Listen to Your Mother' and 'Seven Miles' are:
+Option.
+(A) 'Nunchaku'
+(B) 'The Young and the Restless'
+(C) 'Pomp and Circumstance'
+(D) "Three's a Crowd
+A: Let's think step by step.
+Nocturne is a song performed by Jay Chou, written by Fong, composed by Jay Chou, and arranged by Lin Maike, and included in Jay Chou's 2005 album Chopin in November
+"Materia Medica" is a song by Jay Chou, written by Fong, composed by Jay Chou, and arranged by Michael Lam, and featured on Jay Chou's 2006 album Still Vantage Point.
+Listen to Your Mother" is a song by Jay Chou, composed by Jay Chou and arranged by Lin Maike and Hong Jingyao, included in Jay Chou's 2006 album "Still Vantage".
+Seven Miles is a song performed by Jay Chou, with lyrics by Fong, music by Jay Chou, and arrangement by Chung Hsing-min, included in Jay Chou's 2004 album of the same name, Seven Miles.
+These are all famous Chinese pop songs sung by Jay Chou. Among all the choices, the only song that seems to have something in common with these songs is "Nunchaku" (sung by Jay Chou, composed by Jay Chou, lyrics by Fong Wen-shan, arranged by Chung Hsing-min, and featured in Jay Chou's 2001 album "Fantasia"). So the answer is (A).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Natural_Language_Inference_Translate-EN.txt b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Natural_Language_Inference_Translate-EN.txt
new file mode 100644
index 000000000..a0cc83338
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Natural_Language_Inference_Translate-EN.txt
@@ -0,0 +1,28 @@
+Choose the correct answer based on the relationship between the two sentences in the question.
+
+Q:Statement 1: Xiaoming has just gone ice-skating in Shichahai
+Statement 2: It's winter in Beijing
+What is the relationship between these two statements?
+(A) Implicit
+(B) Contradictory
+(C) Irrelevant
+A: Let's think step by step.
+The first sentence mentions that Xiaoming went ice-skating in Shichahai, which is usually done in winter, and Shichahai is located in Beijing, which implies the information in the second sentence, that is, it is winter at present. So the answer is (A).
+
+Q:Statement 1:Next week, a heavy rainfall will affect the whole Hebei province
+Statement 2: Next week, the weather in Shanghai will be fine.
+What is the relationship between these two statements?
+(A) Implied
+(B) Contradictory
+(C) Irrelevant
+A: Let's think step by step.
+These two sentences describe the weather in two geographical locations, one in Hebei Province and the other in Shanghai. Hebei Province and Shanghai are geographically far apart, so the weather conditions in these two places are not necessarily directly related. Therefore, the relationship between the two sentences is irrelevant. So the answer is (C).
+
+Q:Statement 1: Yesterday, Xiao Ming watched the sunset on a hill and exclaimed, "The sunset is infinite, but it's just near dusk"
+Statement 2: Yesterday it rained and Ming didn't go out
+What is the relationship between these two statements?
+(A) implied
+(B) contradictory
+(C) Irrelevant
+A: Let's think step by step.
+The first sentence says that Ming saw the sunset on the mountain yesterday, while the second sentence says that it rained yesterday and Ming didn't go out. There is a contradiction between these two sentences because if Ming didn't go out, then he couldn't have seen the sunset on the mountain. So there is a contradiction between these two sentences. So the answer is (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Reading_Comprehension_Translate-EN.txt b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Reading_Comprehension_Translate-EN.txt
new file mode 100644
index 000000000..2cd6aab04
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Reading_Comprehension_Translate-EN.txt
@@ -0,0 +1,26 @@
+Please understand the meaning of the question and choose the correct answer.
+
+Q:Some Cantonese people don't like chili peppers. Therefore, some southerners don't like chili peppers. Which of the following ensures the validity of the above argument?
+(A) Some Cantonese people love chili peppers
+(B) Some Southerners love chili peppers.
+(C) All Cantonese are Southerners.
+(D) Some Cantonese people do not love chili or sweets.
+A: Let's think step by step.
+In this argument, we infer from "some Cantonese don't like chili peppers" that "some Southerners don't like chili peppers". This inference depends on the relationship between Cantonese and Southerners. In order for this inference to be valid, we need to make sure that at least some Cantonese are Southerners. Therefore, option (C) "All Cantonese are southerners" is the one that ensures that this argument is valid. So the answer is (C).
+
+
+Q:Thangka is a form of painting rich in Tibetan cultural characteristics, which has a history of more than 1300 years since the rise of the Tubo Dynasty and is a cultural treasure of the Snowy Plateau. It is a cultural treasure of the Snowy Plateau. Its subject matter is not only religious, but also historical and folklore content, so it is also known as the "encyclopedia" to understand Tibet. Therefore, if you want to understand the history of Tibet, in addition to sitting down and reading the strict but slightly dull history books, you can also choose a pleasant and enjoyable way - enjoying the thangka, conversing with many ancient people, imagining the historical events, savoring the rich spiritual world of the Tibetans, and understanding the unique folklore of the Tibetans, which is a process to make the history become a three-dimensional and palpable. This is a process of making history three-dimensional and palpable.
+(A) Thangkas can provide a cozy and relaxing way to learn about Tibet.
+(B) The thangkas are a unique record of Tibetan folklore and historical events.
+(C) The thangka is an "encyclopedic" form of painting for understanding Tibetan culture and history.
+(D) The thangka is a form of painting that is rich in Tibetan cultural characteristics and has a long history.
+A: Let's think step by step.
+It is clearly mentioned in the text that apart from reading rigorous but dull history books, appreciating thangkas is a pleasant and enjoyable way to talk with many ancient people, imagine historical events, experience the rich spiritual world of the Tibetans, and learn about the unique Tibetan folklore. So the main intention of the passage is (A) "Thangkas can provide a cozy and relaxing way to learn about Tibet." So the answer is (A).
+
+Q:As a principle and method of literary criticism, the concept of "knowing people and discussing the world" was first proposed by Mencius, a thinker of the Warring States period. According to Mencius, in order to make friends with the ancients, it is not enough just to read their poems and books, but also to understand their behavior and the times in which they lived, so as to read and understand their poems and books, and to make friends with them and become their soulmates. What is the incorrect understanding of this passage?
+(A) People's hearts can communicate and resonate with each other.
+(B) "Knowing people and discussing the world" has been used as a kind of literary criticism and has shown a strong vitality.
+(C) "Knowing people and discussing the world" can help the descendants to make friends with the ancients and the ancients to become their soulmates.
+(D) Knowing about the ancients and their times helps to understand their works.
+A: Let us think step by step
+From the passage, we fail to see that (B) "Knowing the people of the world" has been used as a kind of literary criticism and has shown a strong vitality. Although it is true that "knowing people and discussing the world" is a principle and method of literary criticism put forward by the philosopher Mencius during the Warring States period, the passage does not mention that "knowing people and discussing the world" is still in use today, nor does it mention that it has shown great vitality. Therefore, option (B) is a misconception. So the answer is (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Sequence_Understanding_Translate-EN.txt b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Sequence_Understanding_Translate-EN.txt
new file mode 100644
index 000000000..cfa2236a8
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Sequence_Understanding_Translate-EN.txt
@@ -0,0 +1,25 @@
+Choose the correct answer based on the context
+
+Q: The following characters are correctly ordered in chronological order? Options:
+(A) Qin Shi Huang, Zhuge Liang, Liu Bang, Bai Juyi
+(B) Zhuge Liang, Qin Shi Huang, Liu Bang, Bai Ju Yi
+(C) Qin Shi Huang, Liu Bang, Zhu Geliang, Bai Juyi
+(D) Bai Juyi, Zhu Geliang, Liu Bang, Qin Shi Huang
+A: Let's think step by step.
+There are 4 characters mentioned in the options, in which Qin Shi Huang is from Qin Dynasty, Zhuge Liang is from Three Kingdoms period, Liu Bang is from Han Dynasty period and Bai Juyi is from Tang Dynasty period, according to the chronological order they are Qin Dynasty, Han Dynasty, Three Kingdoms period and Tang Dynasty, so the characters are sequentially Qin Shi Huang, Liu Bang, Zhuge Liang and Bai Juyi. So the answer is (C).
+
+Q:The following words describing age are correctly ordered from youngest to oldest age? Options:
+(A) Unconfused, Established, Knowledge of life, Flowering age
+(B) To stand, not to be confused, to know one's destiny, and to be in the prime of life.
+(C) Being in the prime of life, knowing one's destiny, being in the prime of life, not being confused.
+(D) to stand up, to grow old, to be unperturbed, to know one's destiny
+A: Let us think step by step.
+The options mention four words describing age. "Established" means 30 years old, "not perplexed" means 40 years old, "knowing one's destiny" means 50 years old, and "at the age of 60" means 50 years old. Therefore, the order of age from youngest to oldest is "to be established", "not to be perplexed", "to know one's life" and "to be at the end of one's life". So the answer is (B).
+
+Q:Which of the following steps is correct for making old-fashioned lollipops? Options:
+(A) Preparing the ingredients, pouring the syrup into the molds, making the syrup, cooling to set the shape
+(B) Prepare ingredients, make syrup, pour syrup into molds, cool to set
+(C) Prepare ingredients, pour syrup into mold, cool and set, make syrup
+(D) Prepare ingredients, cool and set, make syrup, pour syrup into molds
+A: Let's think step by step.
+The question refers to the steps in making old-fashioned lollipops, and the options include "prepare ingredients", "pour syrup into molds", and "make syrup", "According to the steps of making old-fashioned lollipops, the first step is to prepare the ingredients, then you need to make the syrup, then pour the syrup into the molds, and finally cool and set the lollipops. So the answer is (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Sport_Understanding_Translate-EN.txt b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Sport_Understanding_Translate-EN.txt
new file mode 100644
index 000000000..830b38cbe
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Sport_Understanding_Translate-EN.txt
@@ -0,0 +1,22 @@
+Determine whether a human-constructed sentence about sports is plausible.
+
+Q: Is the following sentence plausible? "Athlete Zhang Peimeng's consistent passes made the offensive end take the initiative"
+Options:
+(A) Credible
+(B) Not credible
+A: Let's think step by step.
+Zhang Peimeng is a Chinese track and field athlete, and first pass is a volleyball term. Since he is not a volleyball player, he would not be involved in the passing part of a volleyball game. So the answer is (B).
+
+Q: Is the following sentence plausible? "Athlete Guo Allen scored a free kick."
+Options:
+(A) Credible
+(B) Unbelievable
+A: Let's think step by step.
+Guo Allen is a Chinese basketball player, and free kick is a soccer term. Since he is not a soccer player, he won't be in involved in the free kick part of a soccer game, so the answer is (B).
+
+Q: Is the following sentence plausible? "The athlete Fan Zhiyi scored a goal."
+Options:
+(A) Credible
+(B) Not credible
+A: Let's think step by step.
+Fan Zhiyi is a Chinese soccer player, and scoring a goal is a soccer sport term. Since he is a professional soccer player, he is likely to score a goal, so the answer is (A).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Time_Understanding_Translate-EN.txt b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Time_Understanding_Translate-EN.txt
new file mode 100644
index 000000000..ad20ce8d0
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Chinese_Time_Understanding_Translate-EN.txt
@@ -0,0 +1,28 @@
+Choose the correct answer based on the context.
+
+Q: Siu Wah was born in the year C Shen and his brother is 6 years older than him, so in which year was his brother born?
+Options:
+(A) Year of Ji Mao
+(B) The year of Geng Yin
+(C) Bingshen year
+(D) The year of Yi Chou
+A: Let's think step by step.
+Xiaohua was born in the year of Cingshen. His brother is six years older than him, and according to the Chinese Heavenly Stems and Earthly Branches dating system, the sixth year before the year of Cingshen is the year of Geng Yin. So the answer is (B).
+
+Q: If this is the year of A-chen, and Li Hua's grandfather said, "This is the year I know my destiny," what is Zhao Ting's grandfather's zodiac sign?
+Options:
+(A) Dog
+(B) Tiger
+(C) Rooster
+(D) Rat
+A: Let's think step by step.
+In the title, it is mentioned that grandpa is "in the year of knowing his destiny". In ancient China, "in the year of knowing his destiny" refers to the age of 50, so grandpa is 50 years old this year, and this year is the year of A-chen. According to the method of chronology of the Chinese Heavenly Stems and Earthly Branches, the year of grandpa's birth was the year of A-yin, and the year of A-yin is the year of the Tiger, so grandpa is a Tiger. The year he was born is the year of the tiger, so he is a tiger. So the answer is (B).
+
+Q: Li started making a drawing at 3:00 p.m. in the morning, and he knew that it would take him 10 hours to finish it. So what is the earliest hour at which he can finish it?
+Options:
+ (A) Tatsu
+ (B) U.M. hour
+ (C) Midday
+ (D) the hour of midnight
+A: Let's think step by step.
+According to the ancient Chinese method of timekeeping, three moments of the Ohio hour means approximately 21:45, and 10 hours later it is 7:45, which is the hour of the hour of the moon. So the answer is (A).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Anachronisms_Judgment_Translate-EN.txt b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Anachronisms_Judgment_Translate-EN.txt
new file mode 100644
index 000000000..97148105a
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Anachronisms_Judgment_Translate-EN.txt
@@ -0,0 +1,25 @@
+Identify whether a given statement contains an era error.
+
+Q: How would a person with compulsory education and basic common sense answer whether the following statement contains an anachronism?
+During the landing operations on Iwo Jima, Ralph spoke loudly into the radio.
+Options:
+(A) Yes
+(B) No
+A: Let's think step by step.
+The statement refers to "during the Iwo Jima landings," which is a historical event during World War II. At that time, it was accurate and appropriate for military personnel to use radios to communicate with each other. So the answer is (B).
+
+Q: Does the following statement contain an anachronism and how would a person with a compulsory education and basic common sense answer?
+During the landing operations on Iwo Jima, Ralph speaks loudly into his iPhone.
+Options:
+(A) Yes
+(B) No
+A: Let's think step by step.
+The statement mentions "during the Iwo Jima landings," which refers to a historical event during World War II. However, the reference to Ralph speaking loudly into his iPhone introduces an anachronism; the iPhone is a modern smartphone that did not exist during the Iwo Jima landings in 1945. So the answer is (A).
+
+Q: How would a person with compulsory education and basic common sense answer whether the following statement contains an anachronism?
+Nothing is more satisfying than Sally Hemmings knitting a sweater while watching HBO's True Detective.
+Options:
+(A) Yes
+(B) No
+A: Let's think step by step.
+This statement mentions Sally Hemings, an enslaved woman in late 18th and early 19th century America. However, the reference to her knitting while watching HBO's True Detective introduces an anachronism. Television did not exist in the time period in which Sally Hemings lived, and the specific reference to watching a particular program like True Detective is clearly inappropriate for that time period in history. So the answer is (A).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Movie_and_Music_Recommendation_Translate-EN.txt b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Movie_and_Music_Recommendation_Translate-EN.txt
new file mode 100644
index 000000000..33426fe3f
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Movie_and_Music_Recommendation_Translate-EN.txt
@@ -0,0 +1,40 @@
+Given based on the given list of artworks, identify the most similar.
+
+Q: Find a movie similar to Braveheart, Pretty Woman, Schindler's List, Apollo 13:
+Options:
+(A) Star Trek.
+(B) My Grand Greek Wedding 2
+(C)The Santa Clause 2
+(D) Dances with Wolves
+A: Let's think step by step.
+Star Trek is a science fiction movie, and while it has depth and complexity, its themes and style are quite different from the four movies mentioned above.
+MY GREAT GREEK WEDDING 2 is a light-hearted comedy movie that differs considerably in theme and style from the four movies mentioned above.
+Santa Claus 2 is a Christmas-themed family movie that also differs considerably in theme and style from the four movies mentioned above.
+Dances with Wolves is a movie depicting the relationship with Native Americans during the pioneering period of the American West.
+The theme and style of one of the movies, Dances with Wolves, matches the four movies mentioned above. This movie, like Braveheart, Pretty Woman, Schindler's List, and Apollo 13, is a historical movie with depth and seriousness. So the answer is (D).
+
+Q: Find a movie similar to Braveheart, Pretty Woman, Apollo 13, Dances with Wolves:
+Options:
+(A) Batman: Assault on Arkham
+(B)The Shawshank Redemption
+(C) "Toy Story
+(D) The Lion King
+A: Let's think step by step.
+Batman: Assault on Arkham is a superhero movie whose theme and style are quite different from the four movies mentioned above.
+The Shawshank Redemption is a 1994 American drama film directed by Frank Delabonte and starring Tim Robbins and Morgan Freeman; it's a movie about hope and perseverance.
+Toy Story is an animated movie, and while it may have some themes of adventure and friendship, its themes and style differ considerably from the four movies mentioned above.
+The Lion King, while it is a classic animated movie that covers themes of courage and growing up, has themes and styles that differ considerably from the four movies mentioned above.
+One of the movies, The Shawshank Redemption, like Braveheart, Pretty Woman, Apollo 13, and Dances with Wolves, is a movie with depth and seriousness and has a similar theme and style to the other three movies. So the answer is (B).
+
+Q: Find a movie similar to Astonishing, Braveheart, Lowlife, Schindler's List:
+Options:
+(A) The Cabin of Dr. Caligari
+(B)The Shawshank Redemption
+(C) 'Spider-Man 2'
+(D)Taxi
+A: Let's think step by step.
+The Cabin of Dr. Caligari is a 1920 German Expressionist silent film directed by Robert Wiene. It is often considered a landmark work of German Expressionist cinema and one of the earliest horror films.
+The Shawshank Redemption is a 1994 American drama film directed by Frank Delabonte and starring Tim Robbins and Morgan Freeman; it is a movie about hope and perseverance.
+Spider-Man 2 is a 2004 American superhero film directed by Sam Raimi and starring Tobey Maguire as the second installment of the Spider-Man trilogy.
+Cab is a 2004 American comedy-action film directed by Tim Story and starring Jimmy Foran and Quentin Latafa. The movie is an American remake of the 1998 French film.
+And the titles, "The Thing," "Braveheart," "Lowlife," and "Schindler's List" are some very deep, richly plotted movies with strong human themes. They have all won high praise from audiences and critics for their excellent scripts, brilliant performances and profound themes. Among the options is The Shawshank Redemption, which tells the story of how a wrongly accused banker keeps hope alive in prison and eventually escapes. With its deeply moving plot and profound depiction of human nature, this movie has many similarities with the movie in the title. So the answer is (B).
diff --git a/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Natural_Language_Inference_Translate-EN.txt b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Natural_Language_Inference_Translate-EN.txt
new file mode 100644
index 000000000..bdf47e5eb
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Natural_Language_Inference_Translate-EN.txt
@@ -0,0 +1,28 @@
+Choose the correct answer based on the relationship between the two sentences in the question.
+
+Q:Statement 1: But the old man carefully picked the snake away from the grass, letting it crawl towards the grass, mumbling: sin, sin, this was your home!
+Statement 2: The old man was very sad in his heart.
+What is the relationship between these two statements?
+(A) Contained
+(B) contradictory
+(C) Irrelevant
+A: Let's think step by step.
+The first sentence describes an old man carefully handling a snake's row. The old man says, "Sin, sin, sin," indicating that he feels guilty and sad because he has violated the snake's territory. The second sentence can be inferred from the fact that the old man was very sad. Therefore, the two sentences are implicitly related. So the answer is (A).
+
+Q:Statement 1: She was a black explosive-headed woman with a plump face, full lips and big teeth.
+Statement 2: She likes to wear red lipstick and red clothes.
+What is the relationship between these two statements?
+(A) implied
+(B) contradictory
+(C) Unrelated
+A: Let's think step by step.
+Both sentences describe the same woman, but they focus on different features. The first sentence describes her physical features, including her face, lips, teeth, and hair. The second sentence describes her aesthetic preferences, including lipstick color and dress color. There is no obvious implication or contradiction between these two sentences, so we can say that they are unrelated. So the answer is (C).
+
+Q:Statement 1: You're not sure you've made it clear whose side you're on.
+Statement 2: It is obvious whose side you are on.
+What is the relationship between these two statements?
+(A) Contained
+(B) Contradictory
+(C) Unrelated
+A: Let's think step by step.
+The first sentence indicates that you are not sure who you support, while the second sentence makes it clear that your position is obvious, i.e. you know exactly who you support. Therefore, the two sentences contradict each other. So the answer is (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Reading_Comprehension_Translate-EN.txt b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Reading_Comprehension_Translate-EN.txt
new file mode 100644
index 000000000..777de4237
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Reading_Comprehension_Translate-EN.txt
@@ -0,0 +1,25 @@
+Please understand the meaning of the question and choose the correct answer.
+
+Q:A person's intake of refined sugar and foods that break down into sugar during digestion is almost all of that person's dietary source of glucose (a type of sugar) in the bloodstream. However, coffee itself does not break down into sugar during digestion, which can sometimes cause a person's blood sugar levels to rise sharply, even if the coffee is not sweetened with cream or any sweetener. Which of the following, if true, would best help explain the effect of coffee on blood sugar levels as described above? Options:
+(A) People with sedentary office jobs are more likely to drink large amounts of coffee and to have higher blood sugar levels than people with jobs that require constant physical activity.
+(B) People often drink coffee with meals that consist of several foods that break down quickly into sugar during digestion.
+(C) For many people, a slice of chocolate cake consumes the same stimulating effect as a regular cup of coffee.
+(D) Drinking more than two cups of coffee in an hour increases a person's stress level, and the body responds to stress by releasing stored glucose into the bloodstream.
+A: Let's think step by step.
+The key to the question is to find a factor that explains how coffee causes blood sugar levels to rise, even though coffee itself does not break down into sugar during digestion. This requires us to find a mechanism that can explain how coffee indirectly affects blood sugar levels. Option (D) "Drinking more than two cups of coffee in an hour increases a person's stress levels, and the body responds to stress by releasing stored glucose into the bloodstream" would, if true, best help to explain the effect of coffee on blood sugar levels. This option provides a possible mechanism by which the coffee-induced stress response may cause the body to release stored glucose, leading to an increase in blood sugar levels. This explains why coffee (even without creamer or sweetener) causes blood sugar levels to rise, even though it does not break down into sugar during digestion. So the answer is (D).
+
+Q:A person has tried several different psychotherapies for a mental illness:psychoanalytic therapy,cognitive behavioral therapy and sandplay therapy. He says: "The psychotherapy process made me very unhappy and, therefore, these therapies are ineffective." Which of the following, if true, would most strongly challenge the above conclusion? Options:
+(A) Several different psychotherapies target different mental illnesses.
+(B) People who try multiple psychotherapies are happier than those who try only one.
+(C) Trying different psychotherapies at the same time makes it easier to find the one that works
+(D) People who do well in therapy tend to feel unhappy during the therapy process
+A: Let's think step by step.
+Understanding the question shows that if unhappiness during psychotherapy is a sign of a good therapeutic outcome, then the person's conclusion - that the therapy is ineffective because he feels unhappy during the process - may be wrong. He may have misinterpreted the difficulty and discomfort of the therapy process as a sign that the therapy is ineffective, when in fact it may be a sign that the therapy is working. (D) "People whose therapy is working well tend to feel unhappy during the therapy process" If true, this would most strongly challenge the above conclusion. So the answer is (D).
+
+Q:For a book to be a bestseller,it must be readable or well packaged. If the above assertion holds true, which of the following must be true? Option:
+(A) A book that is not readable and not well-packaged must not be a bestseller.
+(B) A book that is not carefully packaged must not be a bestseller.
+(C) A book that is readable must be a bestseller
+(D) Most people like bestsellers that are readable.
+A: Let's think step by step.
+According to the above assertion, "For a book to be a bestseller, it must be readable or well-packaged", so (A) "A book that is neither readable nor well-packaged must not be a bestseller" must be true. Because if a book is neither readable nor well-packaged, then it does not fulfill the conditions for being a bestseller. So the answer is (A).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Sequence_Understanding_Translate-EN.txt b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Sequence_Understanding_Translate-EN.txt
new file mode 100644
index 000000000..b8193c858
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Sequence_Understanding_Translate-EN.txt
@@ -0,0 +1,25 @@
+Choose the correct answer based on the context
+
+Q:Which of the following lists is correct in chronological order? Options:
+(A) University, M.A., Ph.D., Post-doctoral
+(B) University, Ph.D., M.Phil, Post Ph.D.
+(C) University, High School, Post-doctoral, Doctoral
+(D) Post-doctoral, University, Master's, PhD
+A: Let's think step by step.
+The options in the question introduce the concept of four qualifications "University, Masters, PhD, Post-doctoral" and in the order in which these qualifications were obtained, the first qualification obtained is University, followed by Masters, then PhD and finally Post-doctoral. So the answer is (A).
+
+Q:Which of the following list is correct in chronological order? Options:
+(A) May 1, July 15, August 12, June 14
+(B) July 15, August 12, May 1, June 14
+(C) August 12, May 1, July 15, June 14
+(D) May 1, June 14, July 15, August 12
+A: Let's think step by step.
+The question option introduces four dates which are May 1, June 14, July 15, August 12 in chronological order of the year. So the answer is (D).
+
+Q:Which of the following lists is correct in chronological order? Options:
+(A) Countdown to Heaven, Magicians at the End of the Century, The Undead of Baker Street, Detectives' Requiem
+(B) The Magician at the End of the Century, The Undead of Baker Street, Countdown to Heaven, The Detectives' Requiem
+(C) The Magician at the End of the Century, Countdown to Heaven, The Undead of Baker Street, The Detectives' Requiem
+(D) The Magician at the End of the Century, The Undead of Baker Street, The Detectives' Requiem, The Countdown to Heaven
+A: Let's think step by step.
+The options mention the names of the four Conan theatrical releases. The Magician at the End of the Century was released in 1999, The Undead of Baker Street was released in 2002, Countdown to Heaven was released in 2001, and The Detectives' Requiem was released in 2006, so in chronological order it's The Magician at the End of the Century, Countdown to Heaven, The Undead of Baker Street, and The Detectives' Requiem. So the answer is (C).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Sport_Understanding_Translate-EN.txt b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Sport_Understanding_Translate-EN.txt
new file mode 100644
index 000000000..ef56e5013
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Sport_Understanding_Translate-EN.txt
@@ -0,0 +1,22 @@
+Determine whether a human-constructed sentence about sports is plausible.
+
+Q: Is the following sentence credible? "Tyson threw a right straight punch."
+Options:
+(A) Credible
+(B) Not credible
+A: Let's think step by step.
+Tyson is an American professional boxer. The right straight punch is a common move in boxing. It's quite normal for a boxer to throw a right straight punch, so this sentence is credible. The correct answer should be (A).
+
+Q: Is the following sentence credible? "Beckham completed a slam dunk."
+Options:
+(A) Credible
+(B) Not credible
+A: Let's think step by step.
+Beckham is an English professional footballer. A slam dunk is a technical move in basketball. Therefore, this sentence is not credible. The correct answer should be (B).
+
+Q: Is the following sentence credible? "LeBron James made an eagle."
+Options:
+(A) Credible
+(B) Not credible
+A: Let's think step by step.
+LeBron James is a well-known American professional basketball player. An eagle is a term in golf, meaning two strokes under par. Therefore, this sentence is not credible. The correct answer should be (B).
\ No newline at end of file
diff --git a/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Time_Understanding_Translate-EN.txt b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Time_Understanding_Translate-EN.txt
new file mode 100644
index 000000000..f22f8dd59
--- /dev/null
+++ b/configs/datasets/CHARM/few-shot-examples_Translate-EN/Global_Time_Understanding_Translate-EN.txt
@@ -0,0 +1,30 @@
+Infer dates from context.
+
+Q: Choose the correct answer according to the question. Today is Christmas Eve 1937. What is the date 10 days ago? Options:
+(A) December 14, 1988
+(B)December 14, 2026
+(C)December 14, 1950
+(D)July 14, 1938
+(E)December 14, 1937
+(F) December 14, 2007
+A: Let's think step by step.
+If today is Christmas Eve, 1937, then today's date is December 24, 1937. The 10 days before today is December 14, 1937, which is 12/14/1937. so the answer is (E).
+
+Q: Select the correct answer as per the question. Tomorrow is 12/11/2019. What is the date one year ago? Options:
+(A) August 25, 2018
+(B)November 04, 2018
+(C)November 02, 2018
+(D)November 11, 2018
+(E) September 04, 2018
+A: Let's think step by step.
+If tomorrow is November 12, 2019, then today is November 11, 2019. This day last year from today is November 11, 2018 So the answer is (D).
+
+Q: Select the correct answer according to the question. Li Jing and Wang Wei were married on 2/1/1958. Today is their 5th anniversary. What is the date for tomorrow, please? Options:
+(A) January 18th, 1961
+(B)January 03, 1982
+(C)January 11, 1961
+(D)October 14, 1960
+(E)January 03, 1963
+(F) December 03, 1960
+A: Let's think step by step.
+If Li Jing and Wang Wei were married on January 2, 1958, then today's date would be January 2, 1963 if today is their fifth wedding anniversary. Tomorrow's date will be January 3, 1963, which is January 03, 1961. So the answer is (E).
\ No newline at end of file
diff --git a/configs/datasets/drop/drop_gen.py b/configs/datasets/drop/drop_gen.py
index e3a45f628..473b615db 100644
--- a/configs/datasets/drop/drop_gen.py
+++ b/configs/datasets/drop/drop_gen.py
@@ -1,4 +1,4 @@
from mmengine.config import read_base
with read_base():
- from .drop_gen_822d33 import drop_datasets
+ from .drop_gen_e18aaf import drop_datasets
diff --git a/configs/datasets/subjective/arena_hard/arena_hard_scoring.py b/configs/datasets/subjective/arena_hard/arena_hard_compare.py
similarity index 100%
rename from configs/datasets/subjective/arena_hard/arena_hard_scoring.py
rename to configs/datasets/subjective/arena_hard/arena_hard_compare.py
diff --git a/configs/eval_charm.py b/configs/eval_charm.py
new file mode 100644
index 000000000..fb6f17002
--- /dev/null
+++ b/configs/eval_charm.py
@@ -0,0 +1,52 @@
+from mmengine.config import read_base
+
+with read_base():
+ from .datasets.CHARM.charm_rea_gen_f8fca2 import charm_rea_datasets as datasets
+ from .models.hf_internlm.lmdeploy_internlm2_chat_7b import models as lmdeploy_7b_chat_model
+
+ # from models.openai.gpt_3_5_turbo_1106 import models as gpt_3_5_turbo_1106_model
+ # from models.openai.gpt_4_1106_preview import models as gpt_4_1106_preview_model
+
+ # from .models.chatglm.hf_chatglm3_6b_32k import models as chatglm3_6b_32k_model
+ # from .models.yi.hf_yi_6b_chat import models as yi_6b_chat_model
+ # from .models.hf_internlm.hf_internlm2_chat_7b import models as hf_internlm2_chat_7b_model
+ # from .models.deepseek.hf_deepseek_7b_chat import models as deepseek_7b_chat_model
+ # from .models.baichuan.hf_baichuan2_7b_chat import models as baichuan2_7b_chat_model # need torch 2.1
+ # from .models.hf_llama.hf_llama2_7b_chat import models as llama2_7b_chat_model
+ # from .models.vicuna.hf_vicuna_7b_v15_16k import models as vicuna_7b_v15_16k_model
+
+ # from .models.baichuan.hf_baichuan2_13b_chat import models as baichuan2_13b_chat_model # need torch 2.1
+ # from .models.hf_llama.hf_llama2_13b_chat import models as llama2_13b_chat_model
+ # from .models.vicuna.hf_vicuna_13b_v15_16k import models as vicuna_13b_v15_16k_model
+ # from .models.hf_internlm.hf_internlm2_chat_20b import models as hf_internlm2_chat_20b_model
+
+ # from .models.yi.hf_yi_34b_chat import models as yi_34b_chat_model
+
+ # from .models.deepseek.hf_deepseek_67b_chat import models as deepseek_67b_chat_model
+ # from .models.hf_llama.hf_llama2_70b_chat import models as llama2_70b_chat_model
+
+ # from .models.hf_llama.hf_llama3_8b_instruct import models as llama3_8b_instruct_model
+ # from .models.hf_llama.hf_llama3_70b_instruct import models as llama3_70b_instruct_model
+ from .summarizers.charm_rea import summarizer
+
+models = sum([v for k, v in locals().items() if k.endswith('_model')], [])
+work_dir = './outputs/CHARM/chat/'
+
+# dataset version metric mode internlm2-chat-7b-turbomind
+# ------------------------------------------------------------- --------- ------------- ------ -----------------------------
+# charm-rea-Direct - naive_average gen 49.51
+# charm-rea-ZH-CoT - naive_average gen 61.33
+# charm-rea-EN-CoT - naive_average gen 54.55
+# charm-rea-XLT - naive_average gen 58.46
+# charm-rea-Translate-EN - naive_average gen 56.15
+# - - - -
+# charm-rea-Chinese_Direct - naive_average gen 47.14
+# charm-rea-Chinese_ZH-CoT - naive_average gen 58.40
+# charm-rea-Chinese_EN-CoT - naive_average gen 48.31
+# charm-rea-Chinese_XLT - naive_average gen 53.57
+# charm-rea-Chinese_Translate-EN - naive_average gen 48.21
+# charm-rea-Global_Direct - naive_average gen 51.88
+# charm-rea-Global_ZH-CoT - naive_average gen 64.26
+# charm-rea-Global_EN-CoT - naive_average gen 60.79
+# charm-rea-Global_XLT - naive_average gen 63.36
+# charm-rea-Global_Translate-EN - naive_average gen 64.10
diff --git a/configs/eval_subjective_arena_hard.py b/configs/eval_subjective_arena_hard.py
index a64d1b76d..08db8b29f 100644
--- a/configs/eval_subjective_arena_hard.py
+++ b/configs/eval_subjective_arena_hard.py
@@ -14,7 +14,7 @@
from opencompass.summarizers import ArenaHardSummarizer
with read_base():
- from .datasets.subjective.arena_hard.arena_hard_scoring import subjective_datasets
+ from .datasets.subjective.arena_hard.arena_hard_compare import subjective_datasets
api_meta_template = dict(
round=[
@@ -72,8 +72,8 @@
key='',
meta_template=api_meta_template,
query_per_second=1,
- max_out_len=1024,
- max_seq_len=4096,
+ max_out_len=5120,
+ max_seq_len=9216,
batch_size=10,
retry=10,
temperature = 0,
diff --git a/configs/summarizers/charm_rea.py b/configs/summarizers/charm_rea.py
new file mode 100644
index 000000000..953b24539
--- /dev/null
+++ b/configs/summarizers/charm_rea.py
@@ -0,0 +1,98 @@
+from mmengine.config import read_base
+
+with read_base():
+ from .groups.charm_rea import charm_rea_summary_groups
+
+summarizer = dict(
+ dataset_abbrs=[
+ 'charm-rea-Direct',
+ 'charm-rea-ZH-CoT',
+ 'charm-rea-EN-CoT',
+ 'charm-rea-XLT',
+ 'charm-rea-Translate-EN',
+ '',
+ 'charm-rea-Chinese_Direct',
+ 'charm-rea-Chinese_ZH-CoT',
+ 'charm-rea-Chinese_EN-CoT',
+ 'charm-rea-Chinese_XLT',
+ 'charm-rea-Chinese_Translate-EN',
+ 'charm-rea-Global_Direct',
+ 'charm-rea-Global_ZH-CoT',
+ 'charm-rea-Global_EN-CoT',
+ 'charm-rea-Global_XLT',
+ 'charm-rea-Global_Translate-EN',
+ '',
+ 'charm-rea-Chinese_Anachronisms_Judgment_Direct',
+ 'charm-rea-Chinese_Movie_and_Music_Recommendation_Direct',
+ 'charm-rea-Chinese_Natural_Language_Inference_Direct',
+ 'charm-rea-Chinese_Reading_Comprehension_Direct',
+ 'charm-rea-Chinese_Sequence_Understanding_Direct',
+ 'charm-rea-Chinese_Sport_Understanding_Direct',
+ 'charm-rea-Chinese_Time_Understanding_Direct',
+ 'charm-rea-Global_Anachronisms_Judgment_Direct',
+ 'charm-rea-Global_Movie_and_Music_Recommendation_Direct',
+ 'charm-rea-Global_Natural_Language_Inference_Direct',
+ 'charm-rea-Global_Reading_Comprehension_Direct',
+ 'charm-rea-Global_Sequence_Understanding_Direct',
+ 'charm-rea-Global_Sport_Understanding_Direct',
+ 'charm-rea-Global_Time_Understanding_Direct',
+ 'charm-rea-Chinese_Anachronisms_Judgment_ZH-CoT',
+ 'charm-rea-Chinese_Movie_and_Music_Recommendation_ZH-CoT',
+ 'charm-rea-Chinese_Natural_Language_Inference_ZH-CoT',
+ 'charm-rea-Chinese_Reading_Comprehension_ZH-CoT',
+ 'charm-rea-Chinese_Sequence_Understanding_ZH-CoT',
+ 'charm-rea-Chinese_Sport_Understanding_ZH-CoT',
+ 'charm-rea-Chinese_Time_Understanding_ZH-CoT',
+ 'charm-rea-Global_Anachronisms_Judgment_ZH-CoT',
+ 'charm-rea-Global_Movie_and_Music_Recommendation_ZH-CoT',
+ 'charm-rea-Global_Natural_Language_Inference_ZH-CoT',
+ 'charm-rea-Global_Reading_Comprehension_ZH-CoT',
+ 'charm-rea-Global_Sequence_Understanding_ZH-CoT',
+ 'charm-rea-Global_Sport_Understanding_ZH-CoT',
+ 'charm-rea-Global_Time_Understanding_ZH-CoT',
+ 'charm-rea-Chinese_Anachronisms_Judgment_EN-CoT',
+ 'charm-rea-Chinese_Movie_and_Music_Recommendation_EN-CoT',
+ 'charm-rea-Chinese_Natural_Language_Inference_EN-CoT',
+ 'charm-rea-Chinese_Reading_Comprehension_EN-CoT',
+ 'charm-rea-Chinese_Sequence_Understanding_EN-CoT',
+ 'charm-rea-Chinese_Sport_Understanding_EN-CoT',
+ 'charm-rea-Chinese_Time_Understanding_EN-CoT',
+ 'charm-rea-Global_Anachronisms_Judgment_EN-CoT',
+ 'charm-rea-Global_Movie_and_Music_Recommendation_EN-CoT',
+ 'charm-rea-Global_Natural_Language_Inference_EN-CoT',
+ 'charm-rea-Global_Reading_Comprehension_EN-CoT',
+ 'charm-rea-Global_Sequence_Understanding_EN-CoT',
+ 'charm-rea-Global_Sport_Understanding_EN-CoT',
+ 'charm-rea-Global_Time_Understanding_EN-CoT',
+ 'charm-rea-Chinese_Anachronisms_Judgment_XLT',
+ 'charm-rea-Chinese_Movie_and_Music_Recommendation_XLT',
+ 'charm-rea-Chinese_Natural_Language_Inference_XLT',
+ 'charm-rea-Chinese_Reading_Comprehension_XLT',
+ 'charm-rea-Chinese_Sequence_Understanding_XLT',
+ 'charm-rea-Chinese_Sport_Understanding_XLT',
+ 'charm-rea-Chinese_Time_Understanding_XLT',
+ 'charm-rea-Global_Anachronisms_Judgment_XLT',
+ 'charm-rea-Global_Movie_and_Music_Recommendation_XLT',
+ 'charm-rea-Global_Natural_Language_Inference_XLT',
+ 'charm-rea-Global_Reading_Comprehension_XLT',
+ 'charm-rea-Global_Sequence_Understanding_XLT',
+ 'charm-rea-Global_Sport_Understanding_XLT',
+ 'charm-rea-Global_Time_Understanding_XLT',
+ 'charm-rea-Chinese_Anachronisms_Judgment_Translate-EN',
+ 'charm-rea-Chinese_Movie_and_Music_Recommendation_Translate-EN',
+ 'charm-rea-Chinese_Natural_Language_Inference_Translate-EN',
+ 'charm-rea-Chinese_Reading_Comprehension_Translate-EN',
+ 'charm-rea-Chinese_Sequence_Understanding_Translate-EN',
+ 'charm-rea-Chinese_Sport_Understanding_Translate-EN',
+ 'charm-rea-Chinese_Time_Understanding_Translate-EN',
+ 'charm-rea-Global_Anachronisms_Judgment_Translate-EN',
+ 'charm-rea-Global_Movie_and_Music_Recommendation_Translate-EN',
+ 'charm-rea-Global_Natural_Language_Inference_Translate-EN',
+ 'charm-rea-Global_Reading_Comprehension_Translate-EN',
+ 'charm-rea-Global_Sequence_Understanding_Translate-EN',
+ 'charm-rea-Global_Sport_Understanding_Translate-EN',
+ 'charm-rea-Global_Time_Understanding_Translate-EN',
+ ],
+ summary_groups=sum(
+ [v for k, v in locals().items() if k.endswith('_summary_groups')], [])
+)
diff --git a/configs/summarizers/groups/charm_rea.py b/configs/summarizers/groups/charm_rea.py
new file mode 100644
index 000000000..ade932758
--- /dev/null
+++ b/configs/summarizers/groups/charm_rea.py
@@ -0,0 +1,30 @@
+charm_tasks = [
+ 'Anachronisms_Judgment',
+ 'Movie_and_Music_Recommendation',
+ 'Natural_Language_Inference',
+ 'Reading_Comprehension',
+ 'Sequence_Understanding',
+ 'Sport_Understanding',
+ 'Time_Understanding',
+]
+regions = [
+ 'Chinese',
+ 'Global',
+]
+prompts = [
+ 'Direct',
+ 'ZH-CoT',
+ 'EN-CoT',
+ 'XLT',
+ 'Translate-EN',
+]
+
+
+charm_rea_summary_groups = []
+for prompt in prompts:
+ for region in regions:
+ subsets = ['charm-rea-' + region + '_' + task + '_' + prompt for task in charm_tasks]
+ charm_rea_summary_groups.append({'name': 'charm-rea-' + region + '_' + prompt, 'subsets': subsets})
+for prompt in prompts:
+ subsets = ['charm-rea-' + region + '_' + prompt for region in regions]
+ charm_rea_summary_groups.append({'name': 'charm-rea-' + prompt, 'subsets': subsets})
diff --git a/opencompass/datasets/__init__.py b/opencompass/datasets/__init__.py
index c0de376e7..f89dfc0a6 100644
--- a/opencompass/datasets/__init__.py
+++ b/opencompass/datasets/__init__.py
@@ -12,6 +12,7 @@
from .c3 import * # noqa: F401, F403
from .cb import * # noqa: F401, F403
from .ceval import * # noqa: F401, F403
+from .charm import * # noqa: F401, F403
from .chembench import * # noqa: F401, F403
from .chid import * # noqa: F401, F403
from .cibench import * # noqa: F401, F403
diff --git a/opencompass/datasets/charm.py b/opencompass/datasets/charm.py
new file mode 100644
index 000000000..0a0d6b046
--- /dev/null
+++ b/opencompass/datasets/charm.py
@@ -0,0 +1,60 @@
+import json
+import os.path as osp
+import re
+
+from datasets import Dataset
+
+from opencompass.openicl.icl_evaluator import BaseEvaluator
+from opencompass.registry import (ICL_EVALUATORS, LOAD_DATASET,
+ TEXT_POSTPROCESSORS)
+
+from .base import BaseDataset
+
+
+@TEXT_POSTPROCESSORS.register_module('charm-rea')
+def charm_rea_postprocess(text: str) -> str:
+ ans = text
+ ans_line = ans.split('answer is ')
+ if len(ans_line) != 1:
+ ans = ans_line[1].strip()
+ match = re.search(r'\(([A-Z])\)*', ans)
+ if match:
+ return match.group(1)
+ match = re.search(r'([A-Z])', ans)
+ if match:
+ return match.group(1)
+ return ans
+
+
+@ICL_EVALUATORS.register_module()
+class CharmReaEvaluator(BaseEvaluator):
+
+ def score(self, predictions, references):
+ if len(predictions) != len(references):
+ return {
+ 'error': 'predictions and references have different '
+ 'length'
+ }
+ details = []
+ cnt = 0
+ for pred, ref in zip(predictions, references):
+ detail = {'pred': pred, 'answer': ref, 'correct': False}
+ if pred == ref:
+ cnt += 1
+ detail['correct'] = True
+ details.append(detail)
+
+ score = cnt / len(predictions) * 100
+
+ return {'score': score, 'details': details}
+
+
+@LOAD_DATASET.register_module()
+class CharmDataset(BaseDataset):
+
+ @staticmethod
+ def load(path: str, name: str):
+ with open(osp.join(path, f'{name}.json'), 'r') as f:
+ data = json.load(f)['examples']
+ dataset = Dataset.from_list(data)
+ return dataset
diff --git a/opencompass/datasets/lawbench/evaluation_functions/wsjd.py b/opencompass/datasets/lawbench/evaluation_functions/wsjd.py
index 231ea77e2..4c0a6dad5 100644
--- a/opencompass/datasets/lawbench/evaluation_functions/wsjd.py
+++ b/opencompass/datasets/lawbench/evaluation_functions/wsjd.py
@@ -1,6 +1,7 @@
import re
import os
import subprocess
+import tempfile
"""
Task: legal document grammar correction
@@ -30,21 +31,22 @@ def compute_wsjd(data_dict):
now_path = os.path.abspath(os.getcwd())
utils_path = os.path.abspath(os.path.join(__file__, '..', '..', 'utils'))
- uid = os.getuid()
os.chdir(utils_path)
- with open(f'/tmp/tmp_pred_{uid}.para', 'w') as f:
- f.writelines(preds)
- with open(f'/tmp/tmp_gold_{uid}.para', 'w') as f:
- f.writelines(golds)
- os.environ['KMP_DUPLICATE_LIB_OK']='True'
- os.system(f'python3 parallel_to_m2.py -f /tmp/tmp_pred_{uid}.para -o /tmp/tmp_pred_{uid}.para.m2 -g char')
- os.system(f'python3 parallel_to_m2.py -f /tmp/tmp_gold_{uid}.para -o /tmp/tmp_gold_{uid}.para.m2 -g char')
- output = subprocess.check_output(f"python3 compare_m2_for_evaluation.py -hyp /tmp/tmp_pred_{uid}.para.m2 -ref /tmp/tmp_gold_{uid}.para.m2", shell = True)
+ with tempfile.NamedTemporaryFile(delete=False, mode='w') as tmp_pred_file, \
+ tempfile.NamedTemporaryFile(delete=False, mode='w') as tmp_gold_file:
+ tmp_pred_file.writelines(preds)
+ tmp_gold_file.writelines(golds)
+
+ os.environ['KMP_DUPLICATE_LIB_OK'] = 'True'
+ os.system(f'python3 parallel_to_m2.py -f {tmp_pred_file.name} -o {tmp_pred_file.name}.m2 -g char')
+ os.system(f'python3 parallel_to_m2.py -f {tmp_gold_file.name} -o {tmp_gold_file.name}.m2 -g char')
+ output = subprocess.check_output(
+ f"python3 compare_m2_for_evaluation.py -hyp {tmp_pred_file.name}.m2 -ref {tmp_gold_file.name}.m2", shell=True)
score = float(output.decode().split('\t')[-1].split('\n')[0])
#remove prediction files
- os.remove(f'/tmp/tmp_pred_{uid}.para')
- os.remove(f'/tmp/tmp_gold_{uid}.para')
- os.remove(f'/tmp/tmp_pred_{uid}.para.m2')
- os.remove(f'/tmp/tmp_gold_{uid}.para.m2')
+ os.remove(tmp_pred_file.name)
+ os.remove(tmp_gold_file.name)
+ os.remove(f"{tmp_pred_file.name}.m2")
+ os.remove(f"{tmp_gold_file.name}.m2")
os.chdir(now_path)
return {"score": score}
diff --git a/opencompass/models/openai_api.py b/opencompass/models/openai_api.py
index 47a942df2..d6d7e0706 100644
--- a/opencompass/models/openai_api.py
+++ b/opencompass/models/openai_api.py
@@ -184,8 +184,12 @@ def _generate(self, input: PromptType, max_out_len: int,
messages.append(msg)
# Hold out 100 tokens due to potential errors in tiktoken calculation
- max_out_len = min(
- max_out_len, context_window - self.get_token_len(str(input)) - 100)
+ try:
+ max_out_len = min(
+ max_out_len,
+ context_window - self.get_token_len(str(input)) - 100)
+ except KeyError:
+ max_out_len = max_out_len
if max_out_len <= 0:
return ''