Yata

Results 6 issues of Yata

The code can not work when there are two or more WU-UCT players in one game 。

``` from transformers import AutoTokenizer, AutoModelForSeq2SeqLM from accelerate import Accelerator accelerator = Accelerator() tokenizer = AutoTokenizer.from_pretrained("glm-large-chinese", trust_remote_code=True) model = AutoModelForSeq2SeqLM.from_pretrained("glm-large-chinese", trust_remote_code=True) model = accelerator.prepare(model) ``` 我将`glm-large-chinese`下载到当前目录下,单卡情况使用`python test.py`可以正常load, 如果使用`accelerator launch test.py`...

bug

1. meta dataset S是怎么产生的,都是基于最新的策略重新采样出来吗? 2. 相关的超参是怎么设置的,T,n, m

I've encountered an unexpected behavior in the clustering of my text corpus. The corpus contains the following texts: - `text1` - `text2` - `text3` Based on the distance metric used,...

ModuleNotFoundError: No module named 'addict'