
如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这句话即可:
请先完整阅读并严格遵守以下文档中的全部规则与要求:
https://xuanyuan.cloud/agents.md
在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
This is a service used by the https://github.com/Amsterdam/signals and provides the ability to predict the category that a signal belongs to. It achieves this using existing data, either from an old system or from signals itself. See the "Input data" section below for more information on the format that is required.
The model is based on https://scikit-learn.org and is trained by removing things like "stop words" and special characters, and subsequently counting the stemmed version of the remaining words. The outcome of that process is then transformed to a tf-idf format. Finally, to form a statistic model, regression analysis is performed in the form of logistic regression
To get a prediction from the model there is an API, built using Flask. See section "Running service" below for more information.
Navigate to the root directory and pull the relevant images and build the services:
shelldocker-compose build
The CSV input file must have at least the following columns:
| column | description |
|---|---|
| Text | message |
| Main | Main category slug |
| Sub | Sub category slug |
The columns must be in the order Text,Main,Sub, no header is required.
To train the models place the csv file in the input/ directory and run the following commands:
shelldocker-compose run --rm train --filepath=/input/{name of csv file} --columns=Main docker-compose run --rm train --filepath=/input/{name of csv file} --columns=Main,Sub
This will produce a set of files pickled using https://joblib.readthedocs.io and some files that can be used
to verify the accuracy of the model in the form of a
confusion matrix.
The files will be saved in the ouput/ directory.
In the example above this would result in:
/output/main_model.pkl/output/main_labels.pkl/output/main_dl.csv/output/main-matrix.csv/output/main-matrix.pdf/output/main_sub_model.pkl/output/main_sub_labels.pkl/output/main_sub_dl.csv/output/main_sub-matrix.csv/output/main_sub-matrix.pdfThe service is a standalone API built on the https://flask.palletsprojects.com framework. In order for it to
be able to use the model that was trained the pickle files are required.
Copy the pickle files listed below into the /models directory or the directory you have configured through the
MODELS_DIRECTORY environmental variable.
| output/ | models/ | description |
|---|---|---|
| main_model.pkl | main_model.pkl | model for main category |
| main_sub_model.pkl | sub_model.pkl | model for sub category |
| main_slugs.pkl | main_slugs.pkl | slugs for main category |
| main_sub_slugs.pkl | sub_slugs.pkl | slugs for sub category |
In order for the API to produce useful results for the signals application, it is important to provide a base url for
the backend portion of the application. This can be achieved by setting the environmental variable
SIGNALS_CATEGORY_URL.
To activate the flask api run:
shelldocker-compose up -d web
Typically, a POST request with a body similar to:
json{ "text": "afval" }
should be made to http://localhost:8140/signals_mltool/predict, to get a prediction. This should give a response with a body similar:
json{ "hoofdrubriek": [ [ "http://localhost:8000/signals/v1/public/terms/categories/afval" ], [ 0.7629584838555712 ] ], "subrubriek": [ [ "http://localhost:8000/signals/v1/public/terms/categories/afval/sub_categories/huisafval" ], [ 0.56709391826473 ] ] }
As can be seen in the example response, a full url is given, while for the training process only category names were provided. This happens because before the model is trained the category names are converted to slugs in the same way the signals application converts them. Subsequently, the url is constructed using the base url in the same way that the signals application constructs those urls.
This project uses isort for import sorting. Before committing changes, run the following command to ensure correct import sorting:
bashpoetry run isort .
Adding --diff and --check-only will not fix the found issues but instead show the proposed fixes that can be implemented.
bashpoetry run isort --diff --check-only .
We also use flake8 for code linting. Before committing changes, run the following command to ensure code
compliance with PEP 8 style guidelines and identify potential issues:
bashpoetry run flake8 .
Remember to address any identified issues before committing your changes.
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务