# serving **Repository Path**: secretflow/serving ## Basic Information - **Project Name**: serving - **Description**: 密态机器学习服务 - **Primary Language**: C++ - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2024-01-16 - **Last Updated**: 2025-04-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # SecretFlow-Serving [![CircleCI](https://dl.circleci.com/status-badge/img/gh/secretflow/serving/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/secretflow/serving/tree/main) SecretFlow-Serving is a serving system for privacy-preserving machine learning models. ## Serve a model ```bash # Download the Secretflow Serving Docker image docker pull secretflow/serving-anolis8:latest # Start Secretflow Serving container and open the REST API port cd examples docker-compose up -d # Query the model using the predict API curl --location 'http://127.0.0.1:9010/PredictionService/Predict' \ --header 'Content-Type: application/json' \ --data '{ "service_spec": { "id": "test_service_id" }, "fs_params": { "alice": { "query_datas": [ "a" ] }, "bob": { "query_datas": [ "a" ] } } }' ``` ## Contribution Guidelines If you would like to contribute to SecretFlow-Serving, please check [Contribution guidelines](CONTRIBUTING.md). This documentation also contains instructions for [build and testing](CONTRIBUTING.md#build).