Faych
Faych
After following all the steps the document u write, I found it has error in login to "http://0.0.0.0:18080/v1/engines/codegen/completions", it returns 405 error. And I found the terminal return the following...
rt,对docker的了解只是入门。按照步骤做了,但是报了这个错。查了一下,是说运行的层数过多导致,那我把yml的文件里的几行命令用“ && “合并可行吗?大佬捞一捞🥹
# **Pre-Checklist:** - [x] add an environment file which is proven to work - [x] My code is well-commented and adheres to the project's coding standards.add an env file and...
docker command ```bash docker pull registry.cn-beijing.aliyuncs.com/codewithgpu2/wongkinyiu-yolov9:jlN3QNsRGq ``` [autodl_link](https://www.autodl.com/create?image=WongKinYiu/yolov9/master:v2)
- [x] This PR addresses a TODO in the `tokenize_ftdp_datasets.py` file. Solution: I used the `lstrip` method to remove all leading newline characters from the `content` string. This way, we...
Add Monkey, CoDeF and Depth Anything.
- [x] Implemented check_port function to verify if a port is available - [x] Updated get_port_for_auth_server to use check_port function
**Please describe the purpose of this pull request.** This pull request is aimed at improving the handling of `tool_call_delta` in the `openai.py` script. It ensures that existing data is not...
当前,保存的配置文件名为纯数字时间戳,如 `1709263480595.toml`。这种命名方式容易混淆,难以区分不同的配置文件。 为了改善这一点,我对相关代码进行了修改,使保存的配置文件名包含 `output_name` 前缀,格式为 `[output_name]_[timestamp].toml`。例如,如果 `output_name` 为 "model",保存的配置文件名将变为 "model_1709263480595.toml"。 这种命名方式更加直观,便于识别和管理不同的配置文件。 修改详情 - 在 `api.py` 文件中,修改了toml_file的命名,确保下载的配置文件名也包含了 `output_name` 前缀。 修改了 #364