--debug命令可以正常推理,但是不使用debug则无法推理 #429
-
我们将本地模型部署在服务端,包装成openai接口,在用opencompass推理时,使用如下指令 但是使用如下指令时python3 run.py configs/eval_gpt3.5.py -w outputs/demo,也就是去掉debug,outputs/demo/2023135631/logs/eval/GPT-3.5-turbo/ceval-computer_network.out里则显示prediction no found,接口也不会被调用 另外outputs/demo/2023135631/logs/infer/GPT-3.5-turbo/ceval-computer_network.out里只有一行内容/bin/sh: 1: python: not found |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
In non-debugging mode, tasks are performed in independent processes via commands starting with |
Beta Was this translation helpful? Give feedback.
In non-debugging mode, tasks are performed in independent processes via commands starting with
python
. Apparently, your environment does not havepython
.You may set up a global soft link in /usr/bin or somewhere else and link
python
topython3
.