Files
enginex-c_series-translation/README.md
2025-09-18 22:11:09 +08:00

1.8 KiB
Raw Blame History

enginex-metax-c500-translation

translation-transformers

Quickstart

#构建docker镜像
docker build . -t metax_c500_translation
其中,基础镜像 maca-c500-pytorch:2.33.0.6-torch2.6-py310-ubuntu24.04-amd64 通过联系沐曦厂商技术支持可获取

#运行docker容器
docker run -it -p 10078:80 --device=/dev/mxcd --device=/dev/dri -e MODEL_TYPE=opus_mt -e MODEL_NAME=moxying/opus-mt-zh-en --name metax_c500_translation_test metax_c500_translation

等待模型下载完成,出现以下日志时,代表服务启动成功

INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:80 (Press CTRL+C to quit)

执行测试程序

python3 test.py

测试程序执行结果

Succeed!
Response: [{'translations': [{'origin_text': '生活就像一块巧克力', 'translated': 'Life is like a piece of chocolate.'}, {'origin_text': '你来自哪里', 'translated': 'Where are you from?'}, {'origin_text': '你吃饭了吗', 'translated': 'Have you eaten yet?'}]}]

停止docker容器

docker stop metax_c500_translation_test

模型支持

在Quickstart中运行容器时通过环境变量的方式指定模型的类型和具体的模型名称

-e MODEL_TYPE=opus_mt -e MODEL_NAME=moxying/opus-mt-zh-en

目前支持以下几种配置:

MODEL_TYPE MODEL_NAME
nllb200 facebook/nllb-200-distilled-600M
small100 aiyueqi/alirezamsh_small100
mbart facebook/mbart-large-50-many-to-many-mmt
opus_mt moxying/opus-mt-zh-en

其中MODEL_TYPE代表模型类型必须为以上表格列举之一MODEL_NAME是modelscope上面能够拉取到的模型名称需要和MODEL_TYPE对应