Zhunheng Wang
Zhunheng Wang
BTW, I can't run the examples 'examples/train_comet_bart.py' directly, it will report the following error: ``` ValueError: Usecols do not match columns, columns expected but not found: ['relation', 'tails', 'head'] ```...
It seems like kogito or source code of COMET use the old version of pytorch which is not support the Ampere architecture GPUs, the code can run on V100 which...
> > It seems like kogito or source code of COMET use the old version of pytorch which is not support the Ampere architecture GPUs, the code can run on...
> I see, in that case it seems like we need to resolve the issue so that new numpy version is supported on this architecture. Could you maybe share the...
遇见同样的问题,使用仓库中的`finetune.py`对`glm-4-9b-chat`进行微调后,得到如下文件: 使用`basic_demo/vllm_cli_demo.py`进行推理,将`LORA_PATH`设置为此文件夹路径后得到同样的报错
目前发现是`vllm`和`transformers`版本问题 切换版本:`vllm==0.6.1.post2` `transformers==0.44.0` 问题解决