SIGMOID

Results 3 issues of SIGMOID

```python from transformers import AutoTokenizer, AutoModelForCausalLM, AutoConfig, GenerationConfig # from vllm import LLM, SamplingParams import torch device = torch.device(0) def load_tokenizer_and_model(): tokenizer = AutoTokenizer.from_pretrained('/root/autodl-tmp/selfrag_llama2_7b') config = AutoConfig.from_pretrained('/root/autodl-tmp/selfrag_llama2_7b') model = AutoModelForCausalLM.from_pretrained(...

![image](https://github.com/geekan/MetaGPT/assets/49021250/36174081-2e1d-40ee-be58-0994948b33b2) ```python python start_game.py 2024-05-31 02:42:33.932 | INFO | metagpt.const:get_metagpt_package_root:29 - Package root set to /data0/lizhong/MetaGPT 2024-05-31 02:42:39.139 | INFO | __main__:start_game:34 - Game setup: Player1: Villager, Player2: Werewolf, Player3:...

How are the original data "musique", "2WikiMQA", and "hotpotQA" processed? According to the code, it seems that they are chunked. Is it possible to provide the processed dataset?