diff --git a/python/paddle_serving_app/models/model_list.py b/python/paddle_serving_app/models/model_list.py index a2019997968ce21a30669b2acd1421355b1e0fdd..ca33933b7797dc0bd1cb5881e73ba3fc9d82f3c1 100644 --- a/python/paddle_serving_app/models/model_list.py +++ b/python/paddle_serving_app/models/model_list.py @@ -25,7 +25,9 @@ class ServingModels(object): self.model_dict["SemanticRepresentation"] = ["ernie_base"] self.model_dict["ChineseWordSegmentation"] = ["lac"] self.model_dict["ObjectDetection"] = ["faster_rcnn", "yolov3"] - self.model_dict["ImageSegmentation"] = ["unet", "deeplabv3"] + self.model_dict["ImageSegmentation"] = [ + "unet", "deeplabv3", "mobilenet_cityspaces" + ] self.model_dict["ImageClassification"] = [ "resnet_v2_50_imagenet", "mobilenet_v2_imagenet" ] diff --git a/tools/python_tag.py b/tools/python_tag.py index 75947cff0b1b39d4c262a306bbe2bc878ae7d3ba..7c0fb5aa9928bb83c51df698b2f66df17793feb1 100644 --- a/tools/python_tag.py +++ b/tools/python_tag.py @@ -15,6 +15,6 @@ from wheel.pep425tags import get_abbr_impl, get_impl_ver, get_abi_tag import re with open("setup.cfg", "w") as f: - line = "[bdist_wheel]\npython-tag={0}{1}\nplat-name=linux_x86_64".format( + line = "[bdist_wheel]\npython-tag={0}{1}\nplat-name=manylinux1_x86_64".format( get_abbr_impl(), get_impl_ver()) f.write(line)