## 图像分类示例 (简体中文|[English](./README.md)) 示例中采用ResNet50_vd模型执行imagenet 1000分类任务。 ### 获取模型配置文件和样例数据 ``` sh get_model.sh ``` ### 安装数据预处理模块 ``` pip install paddle_serving_app ``` ### HTTP服务 启动server端 ``` python image_classification_service.py ResNet50_vd_model cpu 9696 #cpu预测服务 ``` ``` python image_classification_service.py ResNet50_vd_model gpu 9696 #gpu预测服务 ``` 发送HTTP POST请求 ``` curl -H "Content-Type:application/json" -X POST -d '{"feed":[{"image": "https://paddle-serving.bj.bcebos.com/imagenet-example/daisy.jpg"}], "fetch": ["score"]}' http://127.0.0.1:9696/image/prediction ``` ### RPC服务 启动server端 ``` python -m paddle_serving_server.serve --model ResNet50_vd_model --port 9696 #cpu预测服务 ``` ``` python -m paddle_serving_server_gpu.serve --model ResNet50_vd_model --port 9696 --gpu_ids 0 #gpu预测服务 ``` client端进行预测 ``` python image_rpc_client.py ResNet50_vd_client_config/serving_client_conf.prototxt ``` *server端示例中服务端口为9696端口